Class: TurnKit::Turn
- Inherits:
-
Object
- Object
- TurnKit::Turn
- Defined in:
- lib/turnkit/turn.rb
Constant Summary collapse
- STATUSES =
Record::TURN_STATUSES
Instance Attribute Summary collapse
-
#agent ⇒ Object
readonly
Returns the value of attribute agent.
-
#agent_name ⇒ Object
readonly
Returns the value of attribute agent_name.
-
#budget ⇒ Object
readonly
Returns the value of attribute budget.
-
#context_message_sequence ⇒ Object
readonly
Returns the value of attribute context_message_sequence.
-
#conversation ⇒ Object
readonly
Returns the value of attribute conversation.
-
#conversation_id ⇒ Object
readonly
Returns the value of attribute conversation_id.
-
#depth ⇒ Object
readonly
Returns the value of attribute depth.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#model ⇒ Object
readonly
Returns the value of attribute model.
-
#parent_tool_execution_id ⇒ Object
readonly
Returns the value of attribute parent_tool_execution_id.
-
#parent_turn_id ⇒ Object
readonly
Returns the value of attribute parent_turn_id.
-
#root_turn_id ⇒ Object
readonly
Returns the value of attribute root_turn_id.
-
#store ⇒ Object
readonly
Returns the value of attribute store.
Instance Method Summary collapse
-
#initialize(agent:, conversation:, record:, store:, budget: nil, depth: 0) ⇒ Turn
constructor
A new instance of Turn.
- #output_text ⇒ Object
- #reload ⇒ Object
- #run! ⇒ Object
- #stale! ⇒ Object
- #status ⇒ Object
- #tool_executions ⇒ Object
Constructor Details
#initialize(agent:, conversation:, record:, store:, budget: nil, depth: 0) ⇒ Turn
Returns a new instance of Turn.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/turnkit/turn.rb', line 11 def initialize(agent:, conversation:, record:, store:, budget: nil, depth: 0) @agent = agent @conversation = conversation @store = store @record = record.transform_keys(&:to_s) @id = @record.fetch("id") @conversation_id = @record.fetch("conversation_id") @agent_name = @record["agent_name"] @parent_turn_id = @record["parent_turn_id"] @parent_tool_execution_id = @record["parent_tool_execution_id"] @root_turn_id = @record["root_turn_id"] || id @context_message_sequence = @record["context_message_sequence"].to_i @model = @record["model"] || agent.effective_model @budget = budget || agent.build_budget @depth = depth end |
Instance Attribute Details
#agent ⇒ Object (readonly)
Returns the value of attribute agent.
7 8 9 |
# File 'lib/turnkit/turn.rb', line 7 def agent @agent end |
#agent_name ⇒ Object (readonly)
Returns the value of attribute agent_name.
8 9 10 |
# File 'lib/turnkit/turn.rb', line 8 def agent_name @agent_name end |
#budget ⇒ Object (readonly)
Returns the value of attribute budget.
7 8 9 |
# File 'lib/turnkit/turn.rb', line 7 def budget @budget end |
#context_message_sequence ⇒ Object (readonly)
Returns the value of attribute context_message_sequence.
9 10 11 |
# File 'lib/turnkit/turn.rb', line 9 def @context_message_sequence end |
#conversation ⇒ Object (readonly)
Returns the value of attribute conversation.
7 8 9 |
# File 'lib/turnkit/turn.rb', line 7 def conversation @conversation end |
#conversation_id ⇒ Object (readonly)
Returns the value of attribute conversation_id.
8 9 10 |
# File 'lib/turnkit/turn.rb', line 8 def conversation_id @conversation_id end |
#depth ⇒ Object (readonly)
Returns the value of attribute depth.
7 8 9 |
# File 'lib/turnkit/turn.rb', line 7 def depth @depth end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
8 9 10 |
# File 'lib/turnkit/turn.rb', line 8 def id @id end |
#model ⇒ Object (readonly)
Returns the value of attribute model.
9 10 11 |
# File 'lib/turnkit/turn.rb', line 9 def model @model end |
#parent_tool_execution_id ⇒ Object (readonly)
Returns the value of attribute parent_tool_execution_id.
8 9 10 |
# File 'lib/turnkit/turn.rb', line 8 def parent_tool_execution_id @parent_tool_execution_id end |
#parent_turn_id ⇒ Object (readonly)
Returns the value of attribute parent_turn_id.
8 9 10 |
# File 'lib/turnkit/turn.rb', line 8 def parent_turn_id @parent_turn_id end |
#root_turn_id ⇒ Object (readonly)
Returns the value of attribute root_turn_id.
9 10 11 |
# File 'lib/turnkit/turn.rb', line 9 def root_turn_id @root_turn_id end |
#store ⇒ Object (readonly)
Returns the value of attribute store.
7 8 9 |
# File 'lib/turnkit/turn.rb', line 7 def store @store end |
Instance Method Details
#output_text ⇒ Object
76 77 78 |
# File 'lib/turnkit/turn.rb', line 76 def output_text @record["output_text"].to_s end |
#reload ⇒ Object
84 85 86 87 |
# File 'lib/turnkit/turn.rb', line 84 def reload @record = store.load_turn(id) self end |
#run! ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/turnkit/turn.rb', line 28 def run! return self unless status == "pending" update!(status: "running", started_at: Clock.now, heartbeat_at: Clock.now) loop do budget.check!(depth: depth) budget.count_iteration! result = agent.effective_client.chat( model: model, messages: , tools: agent.effective_tools, instructions: agent.instructions_with_skills, metadata: { turn_id: id, conversation_id: conversation.id } ) budget.add_usage!(result.usage) add_usage!(result.usage) (result) if result.tool_calls? runner = ToolRunner.new(self) terminal = runner.dispatch(result.tool_calls) if terminal complete_from_terminal_tool(runner, terminal) break end else update!(status: "completed", output_text: result.text, completed_at: Clock.now) break end end reload self rescue StandardError => error update!(status: "failed", error: { "class" => error.class.name, "message" => error. }, completed_at: Clock.now) reload self end |
#stale! ⇒ Object
89 90 91 |
# File 'lib/turnkit/turn.rb', line 89 def stale! update!(status: "stale", completed_at: Clock.now) end |
#status ⇒ Object
68 69 70 |
# File 'lib/turnkit/turn.rb', line 68 def status @record.fetch("status") end |
#tool_executions ⇒ Object
80 81 82 |
# File 'lib/turnkit/turn.rb', line 80 def tool_executions store.list_tool_executions(turn_id: id).map { |attrs| ToolExecution.new(attrs) } end |