@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.
52 lines (49 loc) • 1.07 kB
text/typescript
import auth from './auth';
import changelog from './changelog';
import chat from './chat';
import clerk from './clerk';
import common from './common';
import components from './components';
import discover from './discover';
import error from './error';
import file from './file';
import knowledgeBase from './knowledgeBase';
import metadata from './metadata';
import migration from './migration';
import modelProvider from './modelProvider';
import models from './models';
import plugin from './plugin';
import portal from './portal';
import providers from './providers';
import ragEval from './ragEval';
import setting from './setting';
import thread from './thread';
import tool from './tool';
import topic from './topic';
import welcome from './welcome';
const resources = {
auth,
changelog,
chat,
clerk,
common,
components,
discover,
error,
file,
knowledgeBase,
metadata,
migration,
modelProvider,
models,
plugin,
portal,
providers,
ragEval,
setting,
thread,
tool,
topic,
welcome,
} as const;
export default resources;