@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
20 lines (16 loc) • 476 B
text/typescript
// @vitest-environment node
import { ModelProvider } from '@/libs/model-runtime';
import { testProvider } from '@/libs/model-runtime/providerTestUtils';
import { LobeSparkAI } from './index';
const provider = ModelProvider.Spark;
const defaultBaseURL = 'https://spark-api-open.xf-yun.com/v1';
testProvider({
Runtime: LobeSparkAI,
provider,
defaultBaseURL,
chatDebugEnv: 'DEBUG_SPARK_CHAT_COMPLETION',
chatModel: 'spark',
test: {
skipAPICall: true,
},
});