UNPKG

@azure/openai-assistants

Version:

An isomorphic client library for Azure OpenAI Assistants.

9 lines 370 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. import getClient from "../rest/index.js"; /** Azure OpenAI APIs for Assistants. */ export function createAssistants(endpoint, credential, options = {}) { const clientContext = getClient(endpoint, credential, options); return clientContext; } //# sourceMappingURL=AssistantsContext.js.map