Class: OmniAI::Google::Config

Inherits:
Config
  • Object
show all
Defined in:
lib/omniai/google/config.rb

Overview

Configuration for Google.

Defined Under Namespace

Modules: Version

Constant Summary collapse

DEFAULT_HOST =
"https://generativelanguage.googleapis.com"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_key: ENV.fetch("GOOGLE_API_KEY", nil), project_id: ENV.fetch("GOOGLE_PROJECT_ID", nil), location_id: ENV.fetch("GOOGLE_LOCATION_ID", nil), host: ENV.fetch("GOOGLE_HOST", DEFAULT_HOST), logger: nil, timeout: nil) ⇒ Config

Returns a new instance of Config.

Parameters:

  • api_key (String, nil) (defaults to: ENV.fetch("GOOGLE_API_KEY", nil))

    optional - defaults to ‘ENV`

  • project_id (String, nil) (defaults to: ENV.fetch("GOOGLE_PROJECT_ID", nil))

    optional - defaults to ‘ENV`

  • location_id (String, nil) (defaults to: ENV.fetch("GOOGLE_LOCATION_ID", nil))

    optional - defaults to ‘ENV`

  • host (String, nil) (defaults to: ENV.fetch("GOOGLE_HOST", DEFAULT_HOST))

    optional - defaults to ‘ENV w/ fallback to `DEFAULT_HOST`

  • version (String, nil)

    optional - defaults to ‘ENV w/ fallback to `DEFAULT_VERSION`

  • logger (Logger, nil) (defaults to: nil)

    optional

  • timeout (Integer, Hash, nil) (defaults to: nil)

    optional



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/omniai/google/config.rb', line 29

def initialize(
  api_key: ENV.fetch("GOOGLE_API_KEY", nil),
  project_id: ENV.fetch("GOOGLE_PROJECT_ID", nil),
  location_id: ENV.fetch("GOOGLE_LOCATION_ID", nil),
  host: ENV.fetch("GOOGLE_HOST", DEFAULT_HOST),
  logger: nil,
  timeout: nil
)
  super(api_key:, host:, logger:, timeout:)
  @project_id = project_id
  @location_id = location_id
end

Instance Attribute Details

#location_idString?

Returns:

  • (String, nil)


20
21
22
# File 'lib/omniai/google/config.rb', line 20

def location_id
  @location_id
end

#project_idString?

Returns:

  • (String, nil)


16
17
18
# File 'lib/omniai/google/config.rb', line 16

def project_id
  @project_id
end

Instance Method Details

#credentialsGoogle::Auth::ServiceAccountCredentials?

Returns:

  • (Google::Auth::ServiceAccountCredentials, nil)


48
49
50
51
52
# File 'lib/omniai/google/config.rb', line 48

def credentials
  return @credentials if defined?(@credentials)

  Credentials.detect
end

#credentials=(value) ⇒ Object

Parameters:

  • value (String, File, Google::Auth::ServiceAccountCredentials, nil)


55
56
57
# File 'lib/omniai/google/config.rb', line 55

def credentials=(value)
  @credentials = Credentials.parse(value)
end

#versionString

Returns:

  • (String)


43
44
45
# File 'lib/omniai/google/config.rb', line 43

def version
  @host.eql?(DEFAULT_HOST) ? Version::BETA : Version::STABLE
end