Langchain-Chatchat/frontend/scripts/readmeWorkflow/index.ts

13 lines
281 B
TypeScript
Raw Normal View History

2024-12-20 16:04:03 +08:00
import { consola } from 'consola';
import syncAgentIndex from './syncAgentIndex';
import syncPluginIndex from './syncPluginIndex';
const runSync = async () => {
consola.start('Start sync readme workflow...');
await syncAgentIndex();
await syncPluginIndex();
};
runSync();