Class: OmniAgent::Configuration
- Inherits:
-
Object
- Object
- OmniAgent::Configuration
- Defined in:
- lib/omni_agent/configuration.rb
Instance Attribute Summary collapse
-
#default_model ⇒ Object
Returns the value of attribute default_model.
-
#default_provider ⇒ Object
Returns the value of attribute default_provider.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 |
# File 'lib/omni_agent/configuration.rb', line 5 def initialize @default_provider = :openai @default_model = "gpt-4o-mini" end |
Instance Attribute Details
#default_model ⇒ Object
Returns the value of attribute default_model.
3 4 5 |
# File 'lib/omni_agent/configuration.rb', line 3 def default_model @default_model end |
#default_provider ⇒ Object
Returns the value of attribute default_provider.
3 4 5 |
# File 'lib/omni_agent/configuration.rb', line 3 def default_provider @default_provider end |