Type Alias RunCreateParamsStreaming
RunCreateParamsStreaming: {     additional_instructions: undefined | null | string;     additional_messages: undefined | null | AdditionalMessage[];     assistant_id: string;     include: undefined | "step_details.tool_calls[*].file_search.results[*].content"[];     instructions: undefined | null | string;     max_completion_tokens: undefined | null | number;     max_prompt_tokens: undefined | null | number;     metadata: undefined | null | Metadata;     model:         | undefined        | null        | ChatModel        | string & {};     parallel_tool_calls: undefined | boolean;     reasoning_effort: undefined | ReasoningEffort;     response_format: undefined | null | AssistantResponseFormatOption;     stream: true;     temperature: undefined | null | number;     tool_choice: undefined | null | AssistantToolChoiceOption;     tools: undefined | null | AssistantTool[];     top_p: undefined | null | number;     truncation_strategy: undefined | null | OpenAIClient.Beta.Threads.Runs.RunCreateParams.TruncationStrategy; }