gpt4 book ai didi

node.js - 如何在除 Nodejs 之外的任何应用程序中使用 POE 的 API?

转载 作者:行者123 更新时间:2023-12-02 22:47:55 36 4
gpt4 key购买 nike

我是网络开发领域的新手。

我想与 Quora poe 聊天模型作为 Nodejs 中的 API 进行交互,例如将一些问题作为请求并获取答案作为响应。我该如何执行此操作?

我希望我能从随机网站学习一些与 API 交互的方法。

最佳答案

您可以尝试一下这个包吗

npm i poe-chat-api

然后尝试这样调用:

const Client = require("poe-chat-api");
(async () => {
const instance = new Client(process.env.TOKEN, {
showSteps: true,
});

const client = await instance.init();

await client.sendMessage(
{
// you can ask question as request here
message: "Hello world",
},
(response) => {
// here you can get answer as response
console.log(response);
},
);
})();

关于node.js - 如何在除 Nodejs 之外的任何应用程序中使用 POE 的 API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76677281/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com