Class: Agentilda::Tally::Row

Inherits:
Data
  • Object
show all
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

Instance Attribute Details

#downInteger (readonly)

Returns tokens generated.

Returns:

  • (Integer)

    tokens generated



29
# File 'lib/agentilda/tally.rb', line 29

Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds)

#invocationsInteger (readonly)

Returns times this agent was started.

Returns:

  • (Integer)

    times this agent was started



29
# File 'lib/agentilda/tally.rb', line 29

Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds)

#nameString (readonly)

Returns:

  • (String)


29
# File 'lib/agentilda/tally.rb', line 29

Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds)

#secondsFloat (readonly)

Returns how long it was running, added up.

Returns:

  • (Float)

    how long it was running, added up



29
# File 'lib/agentilda/tally.rb', line 29

Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds)

#subagentsInteger (readonly)

Returns sub-agents it spawned, across all of them.

Returns:

  • (Integer)

    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)

#upInteger (readonly)

Returns tokens sent, sub-agent spend included.

Returns:

  • (Integer)

    tokens sent, sub-agent spend included



29
# File 'lib/agentilda/tally.rb', line 29

Row = Data.define(:name, :invocations, :subagents, :up, :down, :seconds)