/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const ChatbotModel: { readonly Dummy: "dummy"; readonly Gpt55: "gpt-5-5"; readonly Gpt53Instant: "gpt-5-3-instant"; readonly ClaudeHaiku45: "claude-haiku-4-5"; readonly ClaudeSonnet46: "claude-sonnet-4-6"; readonly ClaudeOpus47: "claude-opus-4-7"; readonly ClaudeOpus46: "claude-opus-4-6"; readonly Gemini31FlashLite: "gemini-3-1-flash-lite"; readonly Gemini3Flash: "gemini-3-flash"; readonly Gemini31Pro: "gemini-3-1-pro"; readonly Grok43: "grok-4-3"; readonly Gpt54: "gpt-5-4"; readonly Grok4: "grok-4"; }; export type ChatbotModel = typeof ChatbotModel[keyof typeof ChatbotModel]; export declare function instanceOfChatbotModel(value: any): boolean; export declare function ChatbotModelFromJSON(json: any): ChatbotModel; export declare function ChatbotModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatbotModel; export declare function ChatbotModelToJSON(value?: ChatbotModel | null): any; export declare function ChatbotModelToJSONTyped(value: any, ignoreDiscriminator: boolean): ChatbotModel;