Class: Agentic::LlmConfig
- Inherits:
-
Object
- Object
- Agentic::LlmConfig
- Defined in:
- lib/agentic/llm_config.rb
Instance Attribute Summary collapse
-
#model ⇒ Object
Returns the value of attribute model.
Instance Method Summary collapse
-
#initialize(model: "gpt-4o-2024-08-06") ⇒ LlmConfig
constructor
A new instance of LlmConfig.
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
#model ⇒ Object
Returns the value of attribute model.
5 6 7 |
# File 'lib/agentic/llm_config.rb', line 5 def model @model end |