Type Alias ChatCompletionCreateParamsNonStreaming
ChatCompletionCreateParamsNonStreaming: { audio: undefined | null | ChatCompletionAudioParam; frequency_penalty: undefined | null | number; function_call: | undefined | "none" | "auto" | ChatCompletionFunctionCallOption; functions: undefined | OpenAIClient.Chat.Completions.ChatCompletionCreateParams.Function[]; logit_bias: undefined | null | Record<string, number>; logprobs: undefined | null | boolean; max_completion_tokens: undefined | null | number; max_tokens: undefined | null | number; messages: ChatCompletionMessageParam[]; metadata: undefined | null | Record<string, string>; modalities: undefined | null | ChatCompletionModality[]; model: string & {} | ChatModel; n: undefined | null | number; parallel_tool_calls: undefined | boolean; prediction: undefined | null | ChatCompletionPredictionContent; presence_penalty: undefined | null | number; response_format: | undefined | ResponseFormatJSONSchema | ResponseFormatText | ResponseFormatJSONObject; seed: undefined | null | number; service_tier: | undefined | null | "auto" | "default"; stop: | undefined | null | string | string[]; store: undefined | null | boolean; stream: undefined | null | false; stream_options: undefined | null | ChatCompletionStreamOptions; temperature: undefined | null | number; tool_choice: undefined | ChatCompletionToolChoiceOption; tools: undefined | ChatCompletionTool[]; top_logprobs: undefined | null | number; top_p: undefined | null | number; user: undefined | string; }