mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-06 20:46:13 +00:00
10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
import config from "./.migpt.js";
|
|
import { MiGPT } from "./dist/index.cjs";
|
|
|
|
async function main() {
|
|
const client = MiGPT.create(config);
|
|
await client.start();
|
|
}
|
|
|
|
main();
|