github Azure/azure-sdk-for-js @azure/openai_1.0.0-beta.9

latest releases: @azure/identity_4.5.0-beta.3, @azure/openai_1.0.0-beta.13, @azure/openai-assistants_1.0.0-beta.6...
pre-release8 months ago

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 ...
  }

Don't miss a new azure-sdk-for-js release

NewReleases is sending notifications on new releases.