Class: OpenAI::Models::Admin::Organization::Projects::ProjectRateLimit
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Admin::Organization::Projects::ProjectRateLimit
- Defined in:
- lib/openai/models/admin/organization/projects/project_rate_limit.rb
Overview
Instance Attribute Summary collapse
-
#batch_1_day_max_input_tokens ⇒ Integer?
The maximum batch input tokens per day.
-
#id ⇒ String
The identifier, which can be referenced in API endpoints.
-
#max_audio_megabytes_per_1_minute ⇒ Integer?
The maximum audio megabytes per minute.
-
#max_images_per_1_minute ⇒ Integer?
The maximum images per minute.
-
#max_requests_per_1_day ⇒ Integer?
The maximum requests per day.
-
#max_requests_per_1_minute ⇒ Integer
The maximum requests per minute.
-
#max_tokens_per_1_minute ⇒ Integer
The maximum tokens per minute.
-
#model ⇒ String
The model this rate limit applies to.
-
#object ⇒ Symbol, :"project.rate_limit"
The object type, which is always ‘project.rate_limit`.
Method Summary
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
This class inherits a constructor from OpenAI::Internal::Type::BaseModel
Instance Attribute Details
#batch_1_day_max_input_tokens ⇒ Integer?
The maximum batch input tokens per day. Only present for relevant models.
44 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 44 optional :batch_1_day_max_input_tokens, Integer |
#id ⇒ String
The identifier, which can be referenced in API endpoints.
14 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 14 required :id, String |
#max_audio_megabytes_per_1_minute ⇒ Integer?
The maximum audio megabytes per minute. Only present for relevant models.
50 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 50 optional :max_audio_megabytes_per_1_minute, Integer |
#max_images_per_1_minute ⇒ Integer?
The maximum images per minute. Only present for relevant models.
56 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 56 optional :max_images_per_1_minute, Integer |
#max_requests_per_1_day ⇒ Integer?
The maximum requests per day. Only present for relevant models.
62 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 62 optional :max_requests_per_1_day, Integer |
#max_requests_per_1_minute ⇒ Integer
The maximum requests per minute.
20 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 20 required :max_requests_per_1_minute, Integer |
#max_tokens_per_1_minute ⇒ Integer
The maximum tokens per minute.
26 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 26 required :max_tokens_per_1_minute, Integer |
#model ⇒ String
The model this rate limit applies to.
32 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 32 required :model, String |
#object ⇒ Symbol, :"project.rate_limit"
The object type, which is always ‘project.rate_limit`
38 |
# File 'lib/openai/models/admin/organization/projects/project_rate_limit.rb', line 38 required :object, const: :"project.rate_limit" |