Class: RubyLLM::Registry::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby_llm/registry.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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_adapterObject

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_adapterObject

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_pathObject

Returns the value of attribute manifest_path.



18
19
20
# File 'lib/ruby_llm/registry.rb', line 18

def manifest_path
  @manifest_path
end

#rootObject

Returns the value of attribute root.



18
19
20
# File 'lib/ruby_llm/registry.rb', line 18

def root
  @root
end