UNPKG

@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) 458 B
// @vitest-environment node import { ModelProvider } from 'model-bank'; import { testProvider } from '../../providerTestUtils'; import { LobeMinimaxAI } from './index'; const provider = ModelProvider.Minimax; const defaultBaseURL = 'https://api.minimaxi.com/v1'; testProvider({ Runtime: LobeMinimaxAI, provider, defaultBaseURL, chatDebugEnv: 'DEBUG_MINIMAX_CHAT_COMPLETION', chatModel: 'abab6.5s-chat', test: { skipAPICall: true, }, });