1.1.1 • Published 12 months ago

@mi-gpt/chat v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

@mi-gpt/chat

MiGPT 对话模块

import { ChatBot, type IMessage } from "@mi-gpt/chat";

async function main() {
  const msg: IMessage = {
    id: "123456",
    sender: "user",
    text: "你好",
    timestamp: 1743903202225,
  };

  const answer = await ChatBot.chat(msg);

  console.log(answer);
}

main();
1.1.1

12 months ago

1.1.0

12 months ago

1.0.0

12 months ago