mi-gpt/app.js

10 lines
175 B
JavaScript
Raw Permalink Normal View History

import config from "./.migpt.js";
import { MiGPT } from "./dist/index.cjs";
2024-02-28 06:41:26 +00:00
async function main() {
const client = MiGPT.create(config);
await client.start();
}
main();