@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 (11 loc) • 363 B
text/typescript
import { consola } from 'consola';
import syncAgentIndex from './syncAgentIndex';
import syncPluginIndex from './syncPluginIndex';
import syncProviderIndex from './syncProviderIndex';
const runSync = async () => {
consola.start('Start sync readme workflow...');
await syncProviderIndex();
await syncAgentIndex();
await syncPluginIndex();
};
runSync();