Skip to content

@azure/openai_1.0.0-beta.9

Pre-release
Pre-release
Compare
Choose a tag to compare
@azure-sdk azure-sdk released this 03 Jan 00:23
2e99e2d

1.0.0-beta.9 (2024-01-02)

Breaking Changes

  • listChatCompletions and listCompletions are renamed to streamChatCompletions and streamCompletions respectively and their return types are updated to be a ReadableStream. For example, streamChatCompletions can be used as follows:
  const events = await client.streamChatCompletions(deploymentId, messages);
  for await (const event of events) {
    // use event ...
  }