Class: Openlayer::Client
- Inherits:
-
Internal::Transport::BaseClient
- Object
- Internal::Transport::BaseClient
- Openlayer::Client
- Defined in:
- lib/openlayer/client.rb
Constant Summary collapse
- DEFAULT_MAX_RETRIES =
Default max number of retries to attempt after a failed retryable request.
2- DEFAULT_TIMEOUT_IN_SECONDS =
Default per-request timeout.
60.0- DEFAULT_INITIAL_RETRY_DELAY =
Default initial retry delay in seconds. Overall delay is calculated using exponential backoff + jitter.
0.5- DEFAULT_MAX_RETRY_DELAY =
Default max retry delay in seconds.
8.0
Constants inherited from Internal::Transport::BaseClient
Internal::Transport::BaseClient::MAX_REDIRECTS, Internal::Transport::BaseClient::PLATFORM_HEADERS
Instance Attribute Summary collapse
- #api_key ⇒ String? readonly
- #commits ⇒ Openlayer::Resources::Commits readonly
- #inference_pipelines ⇒ Openlayer::Resources::InferencePipelines readonly
- #projects ⇒ Openlayer::Resources::Projects readonly
- #storage ⇒ Openlayer::Resources::Storage readonly
Attributes inherited from Internal::Transport::BaseClient
#base_url, #headers, #idempotency_header, #initial_retry_delay, #max_retries, #max_retry_delay, #requester, #timeout
Instance Method Summary collapse
-
#initialize(api_key: ENV["OPENLAYER_API_KEY"], base_url: ENV["OPENLAYER_BASE_URL"], max_retries: self.class::DEFAULT_MAX_RETRIES, timeout: self.class::DEFAULT_TIMEOUT_IN_SECONDS, initial_retry_delay: self.class::DEFAULT_INITIAL_RETRY_DELAY, max_retry_delay: self.class::DEFAULT_MAX_RETRY_DELAY) ⇒ Client
constructor
Creates and returns a new client for interacting with the API.
Methods inherited from Internal::Transport::BaseClient
follow_redirect, #inspect, reap_connection!, #request, #send_request, should_retry?, validate!
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(api_key: ENV["OPENLAYER_API_KEY"], base_url: ENV["OPENLAYER_BASE_URL"], max_retries: self.class::DEFAULT_MAX_RETRIES, timeout: self.class::DEFAULT_TIMEOUT_IN_SECONDS, initial_retry_delay: self.class::DEFAULT_INITIAL_RETRY_DELAY, max_retry_delay: self.class::DEFAULT_MAX_RETRY_DELAY) ⇒ Client
Creates and returns a new client for interacting with the API.
‘“api.example.com/v2/”`. Defaults to `ENV`
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/openlayer/client.rb', line 56 def initialize( api_key: ENV["OPENLAYER_API_KEY"], base_url: ENV["OPENLAYER_BASE_URL"], max_retries: self.class::DEFAULT_MAX_RETRIES, timeout: self.class::DEFAULT_TIMEOUT_IN_SECONDS, initial_retry_delay: self.class::DEFAULT_INITIAL_RETRY_DELAY, max_retry_delay: self.class::DEFAULT_MAX_RETRY_DELAY ) base_url ||= "https://api.openlayer.com/v1" @api_key = api_key&.to_s super( base_url: base_url, timeout: timeout, max_retries: max_retries, initial_retry_delay: initial_retry_delay, max_retry_delay: max_retry_delay ) @projects = Openlayer::Resources::Projects.new(client: self) @commits = Openlayer::Resources::Commits.new(client: self) @inference_pipelines = Openlayer::Resources::InferencePipelines.new(client: self) @storage = Openlayer::Resources::Storage.new(client: self) end |
Instance Attribute Details
#api_key ⇒ String? (readonly)
19 20 21 |
# File 'lib/openlayer/client.rb', line 19 def api_key @api_key end |
#commits ⇒ Openlayer::Resources::Commits (readonly)
25 26 27 |
# File 'lib/openlayer/client.rb', line 25 def commits @commits end |
#inference_pipelines ⇒ Openlayer::Resources::InferencePipelines (readonly)
28 29 30 |
# File 'lib/openlayer/client.rb', line 28 def inference_pipelines @inference_pipelines end |
#projects ⇒ Openlayer::Resources::Projects (readonly)
22 23 24 |
# File 'lib/openlayer/client.rb', line 22 def projects @projects end |
#storage ⇒ Openlayer::Resources::Storage (readonly)
31 32 33 |
# File 'lib/openlayer/client.rb', line 31 def storage @storage end |