Class: Zuno::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/zuno/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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_keyObject

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_modelObject

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_keyObject

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_keyObject

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