Class: Zuno::Configuration
- Inherits:
-
Object
- Object
- Zuno::Configuration
- Defined in:
- lib/zuno/configuration.rb
Instance Attribute Summary collapse
-
#anthropic_api_key ⇒ Object
Returns the value of attribute anthropic_api_key.
-
#chat_completion_model ⇒ Object
Returns the value of attribute chat_completion_model.
-
#groq_cloud_api_key ⇒ Object
Returns the value of attribute groq_cloud_api_key.
-
#openai_api_key ⇒ Object
Returns the value of attribute openai_api_key.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 |
# File 'lib/zuno/configuration.rb', line 5 def initialize @chat_completion_model = nil @openai_api_key = nil @anthropic_api_key = nil end |
Instance Attribute Details
#anthropic_api_key ⇒ Object
Returns the value of attribute anthropic_api_key.
3 4 5 |
# File 'lib/zuno/configuration.rb', line 3 def anthropic_api_key @anthropic_api_key end |
#chat_completion_model ⇒ Object
Returns the value of attribute chat_completion_model.
3 4 5 |
# File 'lib/zuno/configuration.rb', line 3 def chat_completion_model @chat_completion_model end |
#groq_cloud_api_key ⇒ Object
Returns the value of attribute groq_cloud_api_key.
3 4 5 |
# File 'lib/zuno/configuration.rb', line 3 def groq_cloud_api_key @groq_cloud_api_key end |
#openai_api_key ⇒ Object
Returns the value of attribute openai_api_key.
3 4 5 |
# File 'lib/zuno/configuration.rb', line 3 def openai_api_key @openai_api_key end |