Class: LLM::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/llm/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



7
8
9
10
# File 'lib/llm/config.rb', line 7

def initialize
  @logger = ::Logger.new($stderr)
  @logger.level = ::Logger::INFO
end

Instance Attribute Details

#loggerObject

Returns the value of attribute logger.



5
6
7
# File 'lib/llm/config.rb', line 5

def logger
  @logger
end