@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.
34 lines (29 loc) • 614 B
text/typescript
export * from './assistants';
export * from './mcp';
export * from './models';
export * from './plugins';
export * from './providers';
export enum DiscoverTab {
Assistants = 'assistant',
Home = 'home',
Mcp = 'mcp',
Models = 'model',
Plugins = 'plugin',
Providers = 'provider',
}
export type IdentifiersResponse = {
identifier: string;
lastModified: string;
}[];
export enum CacheTag {
Assistants = 'assistants',
Discover = 'discover',
MCP = 'mcp',
Models = 'models',
Plugins = 'plugins',
Providers = 'providers',
}
export enum CacheRevalidate {
List = 3600,
Details = 43_200,
}