@azure-rest/ai-inference
Version:
Inference API for Azure-supported AI models
23 lines • 1.02 kB
TypeScript
/**
* THIS IS AN AUTO-GENERATED FILE - DO NOT EDIT!
*
* Any changes you make here may be lost.
*
* If you need to make changes, please do so in the original source file, \{project-root\}/sources/custom
*/
import type { ClientOptions } from "@azure-rest/core-client";
import type { TokenCredential, KeyCredential } from "@azure/core-auth";
import type { ModelClient } from "./clientDefinitions.js";
/** The optional parameters for the client */
export interface ModelClientOptions extends ClientOptions {
/** The api version option of the client */
apiVersion?: string;
}
/**
* Initialize a new instance of `ModelClient`
* @param endpointParam - The parameter endpointParam
* @param credentials - uniquely identify client credential
* @param options - the parameter for all optional parameters
*/
export default function createClient(endpointParam: string, credentials: TokenCredential | KeyCredential, { apiVersion, ...options }?: ModelClientOptions): ModelClient;
//# sourceMappingURL=modelClient.d.ts.map