Class: RubyLLM::Registry::Configuration
- Inherits:
-
Object
- Object
- RubyLLM::Registry::Configuration
- Defined in:
- lib/ruby_llm/registry.rb
Instance Attribute Summary collapse
-
#default_adapter ⇒ Object
Returns the value of attribute default_adapter.
-
#default_database_adapter ⇒ Object
Returns the value of attribute default_database_adapter.
-
#manifest_path ⇒ Object
Returns the value of attribute manifest_path.
-
#root ⇒ Object
Returns the value of attribute root.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
20 21 22 23 24 25 |
# File 'lib/ruby_llm/registry.rb', line 20 def initialize @root = nil @manifest_path = nil @default_adapter = :filesystem @default_database_adapter = :sqlite end |
Instance Attribute Details
#default_adapter ⇒ Object
Returns the value of attribute default_adapter.
18 19 20 |
# File 'lib/ruby_llm/registry.rb', line 18 def default_adapter @default_adapter end |
#default_database_adapter ⇒ Object
Returns the value of attribute default_database_adapter.
18 19 20 |
# File 'lib/ruby_llm/registry.rb', line 18 def default_database_adapter @default_database_adapter end |
#manifest_path ⇒ Object
Returns the value of attribute manifest_path.
18 19 20 |
# File 'lib/ruby_llm/registry.rb', line 18 def manifest_path @manifest_path end |
#root ⇒ Object
Returns the value of attribute root.
18 19 20 |
# File 'lib/ruby_llm/registry.rb', line 18 def root @root end |