UNPKG

deepinfra

Version:
9 lines (8 loc) 443 B
import { CogBaseModel } from "../../../lib/models/base/cog-model"; import { SdxlIn } from "../../../lib/types/cog/sdxl/request"; import { SdxlOut } from "../../../lib/types/cog/sdxl/response"; import { IClientConfig } from "../../../lib/types/common/client-config"; export declare class Sdxl extends CogBaseModel<SdxlIn, SdxlOut> { static readonly modelName: string; constructor(authToken?: string, config?: Partial<IClientConfig>); }