@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.
13 lines (10 loc) • 367 B
text/typescript
// @vitest-environment node
import { testProvider } from '@/libs/model-runtime/providerTestUtils';
import { LobeTogetherAI } from './index';
testProvider({
provider: 'togetherai',
defaultBaseURL: 'https://api.together.xyz/v1',
chatModel: 'mistralai/mistral-7b-instruct:free',
Runtime: LobeTogetherAI,
chatDebugEnv: 'DEBUG_TOGETHERAI_CHAT_COMPLETION',
});