Class: Riffer::Config
- Inherits:
-
Object
- Object
- Riffer::Config
- Defined in:
- lib/riffer/config.rb
Overview
Configuration for the Riffer framework
Provides configuration options for AI providers and other settings.
Instance Attribute Summary collapse
-
#openai ⇒ Struct
readonly
OpenAI configuration.
Instance Method Summary collapse
-
#initialize ⇒ void
constructor
Initializes the configuration.
Constructor Details
#initialize ⇒ void
Initializes the configuration
16 17 18 |
# File 'lib/riffer/config.rb', line 16 def initialize @openai = Struct.new(:api_key).new end |
Instance Attribute Details
#openai ⇒ Struct (readonly)
OpenAI configuration
12 13 14 |
# File 'lib/riffer/config.rb', line 12 def openai @openai end |