Method: ActiveAI::Behavior::LLM::Conversation#initialize

Defined in:
lib/activeai/behavior/llm/conversation.rb

#initialize(llm, state) ⇒ Conversation

i need alerts if this stuff gets caught in a loop! like pondering->noticing and never stopping or something



4
5
6
7
8
9
# File 'lib/activeai/behavior/llm/conversation.rb', line 4

def initialize(llm, state)
  super(llm)
  @state = state
  # TODO raise errors if not expected thingies available in the config
  @state['conversation'] ||= ""
end