45 lines
1.7 KiB
JavaScript
45 lines
1.7 KiB
JavaScript
"use strict";
|
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Models = void 0;
|
|
const resource_1 = require("../core/resource.js");
|
|
const pagination_1 = require("../core/pagination.js");
|
|
const headers_1 = require("../internal/headers.js");
|
|
const path_1 = require("../internal/utils/path.js");
|
|
class Models extends resource_1.APIResource {
|
|
/**
|
|
* Get a specific model.
|
|
*
|
|
* The Models API response can be used to determine information about a specific
|
|
* model or resolve a model alias to a model ID.
|
|
*/
|
|
retrieve(modelID, params = {}, options) {
|
|
const { betas } = params ?? {};
|
|
return this._client.get((0, path_1.path) `/v1/models/${modelID}`, {
|
|
...options,
|
|
headers: (0, headers_1.buildHeaders)([
|
|
{ ...(betas?.toString() != null ? { 'anthropic-beta': betas?.toString() } : undefined) },
|
|
options?.headers,
|
|
]),
|
|
});
|
|
}
|
|
/**
|
|
* List available models.
|
|
*
|
|
* The Models API response can be used to determine which models are available for
|
|
* use in the API. More recently released models are listed first.
|
|
*/
|
|
list(params = {}, options) {
|
|
const { betas, ...query } = params ?? {};
|
|
return this._client.getAPIList('/v1/models', (pagination_1.Page), {
|
|
query,
|
|
...options,
|
|
headers: (0, headers_1.buildHeaders)([
|
|
{ ...(betas?.toString() != null ? { 'anthropic-beta': betas?.toString() } : undefined) },
|
|
options?.headers,
|
|
]),
|
|
});
|
|
}
|
|
}
|
|
exports.Models = Models;
|
|
//# sourceMappingURL=models.js.map
|