@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.
22 lines (18 loc) • 368 B
text/typescript
import { POST as UniverseRoute } from '../[provider]/route';
export const runtime = 'edge';
export const preferredRegion = [
'bom1',
'cle1',
'cpt1',
'gru1',
'hnd1',
'iad1',
'icn1',
'kix1',
'pdx1',
'sfo1',
'sin1',
'syd1',
];
export const POST = async (req: Request) =>
UniverseRoute(req, { params: Promise.resolve({ provider: 'groq' }) });