Class: Airb::Systems::Intelligence

Inherits:
VSM::Intelligence
  • Object
show all
Defined in:
lib/airb/systems/intelligence.rb

Constant Summary collapse

SYSTEM_PROMPT =
<<~PROMPT
  You are "airb", a careful coding assistant inside a git workspace.
  Use tools when needed. Prefer minimal, reversible edits and concise explanations.
PROMPT

Instance Method Summary collapse

Constructor Details

#initialize(driver:) ⇒ Intelligence

Returns a new instance of Intelligence.



10
11
12
# File 'lib/airb/systems/intelligence.rb', line 10

def initialize(driver:)
  super(driver: driver, system_prompt: SYSTEM_PROMPT)
end