@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.
15 lines (10 loc) • 375 B
text/typescript
import { publicProcedure, asyncRouter as router } from '@/libs/trpc/async';
import { fileRouter } from './file';
import { ragEvalRouter } from './ragEval';
export const asyncRouter = router({
file: fileRouter,
healthcheck: publicProcedure.query(() => "i'm live!"),
ragEval: ragEvalRouter,
});
export type AsyncRouter = typeof asyncRouter;
export * from './caller';