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

latest releases: @azure/template_1.0.12-beta.4299665, @azure/template_1.0.12-beta.4299549, @azure/template_1.0.12-beta.4298937...
pre-release10 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.