import { QfLLMInfoMap, CompletionBody } from '../interface'; /** * 续写公共服务模型列表 */ export type CompletionModel = 'ERNIE-Bot-turbo' | 'ERNIE-Bot' | 'ERNIE-Bot-4' | 'ERNIE-Bot-8k' | 'ERNIE-Speed' | 'EB-turbo-AppBuilder' | 'BLOOMZ-7B' | 'Llama-2-7b-chat' | 'Llama-2-13b-chat' | 'Llama-2-70b-chat' | 'Qianfan-BLOOMZ-7B-compressed' | 'Qianfan-Chinese-Llama-2-7B' | 'ChatGLM2-6B-32K' | 'AquilaChat-7B' | 'XuanYuan-70B-Chat-4bit' | 'Qianfan-Chinese-Llama-2-13B' | 'ChatLaw' | 'SQLCoder-7B' | 'CodeLlama-7b-Instruct' | 'Yi-34B-Chat'; export declare const modelInfoMap: QfLLMInfoMap; export declare function isCompletionBody(body: any): body is CompletionBody;