/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Batches } from "./batches.js"; import { Chat } from "./chat.js"; import { Classify } from "./classify.js"; import { Conversations } from "./conversations.js"; import { Embeddings } from "./embeddings.js"; import { Evals } from "./evals.js"; import { ExtractT } from "./extract.js"; import { Feedback } from "./feedback.js"; import { Files } from "./files.js"; import { FineTuning } from "./finetuning.js"; import { Images } from "./images.js"; import { McpVault } from "./mcpvault.js"; import { MemoryStores } from "./memorystores.js"; import { Models } from "./models.js"; import { Prompts } from "./prompts.js"; import { Responses } from "./responses.js"; import { SDKUsage } from "./sdkusage.js"; import { Skills } from "./skills.js"; import { Speech } from "./speech.js"; import { VectorStores } from "./vectorstores.js"; export class Llm extends ClientSDK { private _batches?: Batches; get batches(): Batches { return (this._batches ??= new Batches(this._options)); } private _chat?: Chat; get chat(): Chat { return (this._chat ??= new Chat(this._options)); } private _conversations?: Conversations; get conversations(): Conversations { return (this._conversations ??= new Conversations(this._options)); } private _embeddings?: Embeddings; get embeddings(): Embeddings { return (this._embeddings ??= new Embeddings(this._options)); } private _evals?: Evals; get evals(): Evals { return (this._evals ??= new Evals(this._options)); } private _feedback?: Feedback; get feedback(): Feedback { return (this._feedback ??= new Feedback(this._options)); } private _files?: Files; get files(): Files { return (this._files ??= new Files(this._options)); } private _fineTuning?: FineTuning; get fineTuning(): FineTuning { return (this._fineTuning ??= new FineTuning(this._options)); } private _images?: Images; get images(): Images { return (this._images ??= new Images(this._options)); } private _mcpVault?: McpVault; get mcpVault(): McpVault { return (this._mcpVault ??= new McpVault(this._options)); } private _memoryStores?: MemoryStores; get memoryStores(): MemoryStores { return (this._memoryStores ??= new MemoryStores(this._options)); } private _models?: Models; get models(): Models { return (this._models ??= new Models(this._options)); } private _prompts?: Prompts; get prompts(): Prompts { return (this._prompts ??= new Prompts(this._options)); } private _responses?: Responses; get responses(): Responses { return (this._responses ??= new Responses(this._options)); } private _speech?: Speech; get speech(): Speech { return (this._speech ??= new Speech(this._options)); } private _usage?: SDKUsage; get usage(): SDKUsage { return (this._usage ??= new SDKUsage(this._options)); } private _classify?: Classify; get classify(): Classify { return (this._classify ??= new Classify(this._options)); } private _extract?: ExtractT; get extract(): ExtractT { return (this._extract ??= new ExtractT(this._options)); } private _skills?: Skills; get skills(): Skills { return (this._skills ??= new Skills(this._options)); } private _vectorStores?: VectorStores; get vectorStores(): VectorStores { return (this._vectorStores ??= new VectorStores(this._options)); } }