Current section
Files
Jump to
Current section
Files
lib/ex_openai/generated/components/chat_completion_stream_options.ex
defmodule ExOpenAI.Components.ChatCompletionStreamOptions do
use ExOpenAI.Jason
@moduledoc """
Module for representing the OpenAI schema ChatCompletionStreamOptions.
## Type
`{:%{}, [], [{{:optional, [], [:include_obfuscation]}, {:boolean, [], []}}, {{:optional, [], [:include_usage]}, {:boolean, [], []}}]} | any()`
"""
@type t() ::
%{optional(:include_obfuscation) => boolean(), optional(:include_usage) => boolean()}
| any()
end