Class: RubyLLM::Contract::Configuration
- Inherits:
-
Object
- Object
- RubyLLM::Contract::Configuration
- Defined in:
- lib/ruby_llm/contract/configuration.rb
Overview
Instance Attribute Summary collapse
-
#default_adapter ⇒ Object
Returns the value of attribute default_adapter.
-
#default_model ⇒ Object
Returns the value of attribute default_model.
-
#logger ⇒ Object
Returns the value of attribute logger.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
15 16 17 18 19 |
# File 'lib/ruby_llm/contract/configuration.rb', line 15 def initialize @default_adapter = nil @default_model = nil @logger = nil end |
Instance Attribute Details
#default_adapter ⇒ Object
Returns the value of attribute default_adapter.
13 14 15 |
# File 'lib/ruby_llm/contract/configuration.rb', line 13 def default_adapter @default_adapter end |
#default_model ⇒ Object
Returns the value of attribute default_model.
13 14 15 |
# File 'lib/ruby_llm/contract/configuration.rb', line 13 def default_model @default_model end |
#logger ⇒ Object
Returns the value of attribute logger.
13 14 15 |
# File 'lib/ruby_llm/contract/configuration.rb', line 13 def logger @logger end |