/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Audio } from "./audio.js"; import { Chat } from "./chat.js"; import { Completions } from "./completions.js"; import { Embeddings } from "./embeddings.js"; import { Images } from "./images.js"; export class FireworksAI extends ClientSDK { private _chat?: Chat; get chat(): Chat { return (this._chat ??= new Chat(this._options)); } private _completions?: Completions; get completions(): Completions { return (this._completions ??= new Completions(this._options)); } private _images?: Images; get images(): Images { return (this._images ??= new Images(this._options)); } private _embeddings?: Embeddings; get embeddings(): Embeddings { return (this._embeddings ??= new Embeddings(this._options)); } private _audio?: Audio; get audio(): Audio { return (this._audio ??= new Audio(this._options)); } }