Class: Agentilda::Tally::Row
- Inherits:
-
Data
- Object
- Data
- Agentilda::Tally::Row
- Defined in:
- lib/agentilda/tally.rb
Overview
One agent's share of the run, added up across every round it ran in.
Instance Attribute Summary collapse
-
#down ⇒ Integer
readonly
Tokens generated.
-
#invocations ⇒ Integer
readonly
Times this agent was started.
- #name ⇒ String readonly
-
#seconds ⇒ Float
readonly
How long it was running, added up.
-
#subagents ⇒ Integer
readonly
Sub-agents it spawned, across all of them.
-
#up ⇒ Integer
readonly
Tokens sent, sub-agent spend included.
Instance Attribute Details
#down ⇒ Integer (readonly)
Returns tokens generated.
29 |
# File 'lib/agentilda/tally.rb', line 29 Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds) |
#invocations ⇒ Integer (readonly)
Returns times this agent was started.
29 |
# File 'lib/agentilda/tally.rb', line 29 Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds) |
#name ⇒ String (readonly)
29 |
# File 'lib/agentilda/tally.rb', line 29 Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds) |
#seconds ⇒ Float (readonly)
Returns how long it was running, added up.
29 |
# File 'lib/agentilda/tally.rb', line 29 Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds) |
#subagents ⇒ Integer (readonly)
Returns sub-agents it spawned, across all of them.
29 |
# File 'lib/agentilda/tally.rb', line 29 Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds) |
#up ⇒ Integer (readonly)
Returns tokens sent, sub-agent spend included.
29 |
# File 'lib/agentilda/tally.rb', line 29 Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds) |