Class: OpenAI::Models::Chat::ChatCompletionStreamOptions
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Chat::ChatCompletionStreamOptions
- Defined in:
- lib/openai/models/chat/chat_completion_stream_options.rb
Instance Attribute Summary collapse
-
#include_usage ⇒ Boolean?
If set, an additional chunk will be streamed before the ‘data: [DONE]` message.
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, 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
#include_usage ⇒ Boolean?
If set, an additional chunk will be streamed before the ‘data: [DONE]` message. The `usage` field on this chunk shows the token usage statistics for the entire request, and the `choices` field will always be an empty array.
All other chunks will also include a ‘usage` field, but with a null value. NOTE: If the stream is interrupted, you may not receive the final usage chunk which contains the total token usage for the request.
17 |
# File 'lib/openai/models/chat/chat_completion_stream_options.rb', line 17 optional :include_usage, OpenAI::Internal::Type::Boolean |