Class: OmniAI::Google::Client
- Inherits:
-
Client
- Object
- Client
- OmniAI::Google::Client
- Defined in:
- lib/omniai/google/client.rb
Overview
Instance Attribute Summary collapse
Instance Method Summary collapse
- #chat(messages = nil, model: Chat::DEFAULT_MODEL, temperature: nil, format: nil, stream: nil, tools: nil) {|prompt| ... } ⇒ OmniAI::Chat::Completion
- #connection ⇒ HTTP::Client
- #credentials? ⇒ Boolean
- #embed(input, model: Embed::DEFAULT_MODEL) ⇒ Object
-
#initialize(api_key: OmniAI::Google.config.api_key, project_id: OmniAI::Google.config.project_id, location_id: OmniAI::Google.config.location_id, credentials: OmniAI::Google.config.credentials, logger: OmniAI::Google.config.logger, host: OmniAI::Google.config.host, version: OmniAI::Google.config.version, timeout: OmniAI::Google.config.timeout) ⇒ Client
constructor
A new instance of Client.
- #path ⇒ String
- #upload(io) ⇒ OmniAI::Google::Upload::File
Constructor Details
#initialize(api_key: OmniAI::Google.config.api_key, project_id: OmniAI::Google.config.project_id, location_id: OmniAI::Google.config.location_id, credentials: OmniAI::Google.config.credentials, logger: OmniAI::Google.config.logger, host: OmniAI::Google.config.host, version: OmniAI::Google.config.version, timeout: OmniAI::Google.config.timeout) ⇒ Client
Returns a new instance of Client.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/omniai/google/client.rb', line 35 def initialize( api_key: OmniAI::Google.config.api_key, project_id: OmniAI::Google.config.project_id, location_id: OmniAI::Google.config.location_id, credentials: OmniAI::Google.config.credentials, logger: OmniAI::Google.config.logger, host: OmniAI::Google.config.host, version: OmniAI::Google.config.version, timeout: OmniAI::Google.config.timeout ) if api_key.nil? && credentials.nil? raise(ArgumentError, "either an `api_key` or `credentials` must be provided") end super(api_key:, host:, logger:, timeout:) @project_id = project_id @location_id = location_id @credentials = credentials @version = version end |
Instance Attribute Details
#version ⇒ String?
25 26 27 |
# File 'lib/omniai/google/client.rb', line 25 def version @version end |
Instance Method Details
#chat(messages = nil, model: Chat::DEFAULT_MODEL, temperature: nil, format: nil, stream: nil, tools: nil) {|prompt| ... } ⇒ OmniAI::Chat::Completion
70 71 72 |
# File 'lib/omniai/google/client.rb', line 70 def chat( = nil, model: Chat::DEFAULT_MODEL, temperature: nil, format: nil, stream: nil, tools: nil, &) Chat.process!(, model:, temperature:, format:, stream:, tools:, client: self, &) end |
#connection ⇒ HTTP::Client
101 102 103 104 105 |
# File 'lib/omniai/google/client.rb', line 101 def connection http = super http = http.auth(auth) if credentials? http end |
#credentials? ⇒ Boolean
108 109 110 |
# File 'lib/omniai/google/client.rb', line 108 def credentials? !@credentials.nil? end |
#embed(input, model: Embed::DEFAULT_MODEL) ⇒ Object
87 88 89 |
# File 'lib/omniai/google/client.rb', line 87 def (input, model: Embed::DEFAULT_MODEL) Embed.process!(input, model:, client: self) end |
#path ⇒ String
92 93 94 95 96 97 98 |
# File 'lib/omniai/google/client.rb', line 92 def path if @project_id && @location_id "/#{@version}/projects/#{@project_id}/locations/#{@location_id}/publishers/google" else "/#{@version}" end end |
#upload(io) ⇒ OmniAI::Google::Upload::File
79 80 81 |
# File 'lib/omniai/google/client.rb', line 79 def upload(io) Upload.process!(client: self, io:) end |