Class: DebugAgent::StreamHandler
- Inherits:
-
Object
- Object
- DebugAgent::StreamHandler
- Defined in:
- lib/debug_agent/llm_client.rb
Overview
Stream callback interface (engine implements this)
Direct Known Subclasses
Instance Method Summary collapse
- #on_complete(tool_calls, finish_reason, usage) ⇒ Object
- #on_content(chunk) ⇒ Object
- #on_error(error) ⇒ Object
Instance Method Details
#on_complete(tool_calls, finish_reason, usage) ⇒ Object
10 |
# File 'lib/debug_agent/llm_client.rb', line 10 def on_complete(tool_calls, finish_reason, usage); end |
#on_content(chunk) ⇒ Object
9 |
# File 'lib/debug_agent/llm_client.rb', line 9 def on_content(chunk); end |
#on_error(error) ⇒ Object
11 |
# File 'lib/debug_agent/llm_client.rb', line 11 def on_error(error); end |