Module: Clacky::Agent::FakeToolCallDetector

Included in:
Clacky::Agent
Defined in:
lib/clacky/agent/fake_tool_call_detector.rb

Constant Summary collapse

FAKE_TOOL_CALL_PATTERNS =
[
  /<\s*invoke\s+name\s*=\s*["'][\w\-]+["']/i,
  /<\s*function_calls\s*>/i,
  /<\s*tool_use\s*[\s>]/i,
  /<\s*antml:invoke\s+name\s*=/i,
  /<\s*antml:function_calls\s*>/i
].freeze
MAX_FAKE_TOOL_CALL_RETRIES =
2