Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Agent streaming with test and samples (#31696)
Two new streaming API for Running Agents. ` createRunStreaming: (threadId: string, assistantId: string, options?: Omit<CreateRunOptions, "assistant_id">, requestParams?: RequestParameters) => AsyncIterable<AgentStreamEventMessage>; ` `createThreadAndRunStreaming: (assistantId: string, options?: Omit<CreateAndRunThreadOptions, "assistant_id">, requestParams?: RequestParameters) ` Leverage Azure Core SSE package for streaming. This also brings in some models omitted by the JS code gen, necessary for streaming.
- Loading branch information