import { APIResource } from "../core/resource.js"; import { APIPromise } from "../core/api-promise.js"; import { RequestOptions } from "../internal/request-options.js"; export declare class Models extends APIResource { retrieve(model: string, options?: RequestOptions): APIPromise; /** * Lists the currently available models, and provides basic information about each * one. */ list(options?: RequestOptions): APIPromise; } export interface LlamaModel { /** * The unique model identifier, which can be referenced in the API. */ id: string; /** * The creation time of the model. */ created: number; /** * The object type, which is always "model" */ object: 'model'; /** * The owner of the model. */ owned_by: string; } export type ModelListResponse = Array; export declare namespace Models { export { type LlamaModel as LlamaModel, type ModelListResponse as ModelListResponse }; } //# sourceMappingURL=models.d.ts.map