/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Health } from "./health.js"; import { Inference } from "./inference.js"; import { Modality } from "./modality.js"; import { Models } from "./models.js"; export class SDK extends ClientSDK { private _health?: Health; get health(): Health { return (this._health ??= new Health(this._options)); } private _models?: Models; get models(): Models { return (this._models ??= new Models(this._options)); } private _modality?: Modality; get modality(): Modality { return (this._modality ??= new Modality(this._options)); } private _inference?: Inference; get inference(): Inference { return (this._inference ??= new Inference(this._options)); } }