Class: DebugAgent::StreamHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/debug_agent/llm_client.rb

Overview

Stream callback interface (engine implements this)

Direct Known Subclasses

EngineStreamHandler

Instance Method Summary collapse

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