Class: Agentic::LlmConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/agentic/llm_config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(model: "gpt-4o-2024-08-06") ⇒ LlmConfig

Returns a new instance of LlmConfig.



7
8
9
# File 'lib/agentic/llm_config.rb', line 7

def initialize(model: "gpt-4o-2024-08-06")
  @model = model
end

Instance Attribute Details

#modelObject

Returns the value of attribute model.



5
6
7
# File 'lib/agentic/llm_config.rb', line 5

def model
  @model
end