D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
openai
/
resources
/
Filename :
models.mjs
back
Copy
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from "../core/resource.mjs"; import { Page } from "../core/pagination.mjs"; import { path } from "../internal/utils/path.mjs"; export class Models extends APIResource { /** * Retrieves a model instance, providing basic information about the model such as * the owner and permissioning. */ retrieve(model, options) { return this._client.get(path `/models/${model}`, options); } /** * Lists the currently available models, and provides basic information about each * one such as the owner and availability. */ list(options) { return this._client.getAPIList('/models', (Page), options); } /** * Delete a fine-tuned model. You must have the Owner role in your organization to * delete a model. */ delete(model, options) { return this._client.delete(path `/models/${model}`, options); } } //# sourceMappingURL=models.mjs.map