feat: add chatWithStreamResponse for MyBot

This commit is contained in:
WJG 2024-02-25 00:34:05 +08:00
parent 02a3203c03
commit f31f64c286
No known key found for this signature in database
GPG Key ID: 258474EF8590014A
3 changed files with 60 additions and 2 deletions

View File

@ -1,9 +1,12 @@
import { randomUUID } from "crypto";
import { jsonDecode, jsonEncode } from "../../utils/base";
import { buildPrompt, toUTC8Time } from "../../utils/string";
import { openai } from "../openai";
import { ChatOptions, openai } from "../openai";
import { IBotConfig } from "./config";
import { ConversationManager } from "./conversation";
import { StreamResponse } from "../speaker/stream";
// todo JSON mode 下,无法使用 stream 应答模式在应答完成之前无法构造完整的JSON
const systemTemplate = `
{{name}}
@ -84,4 +87,31 @@ export class MyBot {
});
return jsonDecode(result?.content)?.message;
}
static async chatWithStreamResponse(
options: ChatOptions & {
onFinished?: (text: string) => void;
}
) {
const requestId = randomUUID();
const stream = new StreamResponse();
openai
.chatStream({
...options,
requestId,
onStream: (text) => {
if (stream.status === "canceled") {
return openai.abort(requestId);
}
stream.addResponse(text);
},
})
.then((answer) => {
if (answer) {
stream.finish(answer);
options.onFinished?.(answer);
}
});
return stream;
}
}

26
tests/bot.ts Normal file
View File

@ -0,0 +1,26 @@
import { MyBot } from "../src/services/bot";
import { AISpeaker } from "../src/services/speaker/ai";
export async function testMyBot() {
await testStreamResponse();
}
async function testStreamResponse() {
const stream = await MyBot.chatWithStreamResponse({
user: "地球为什么是圆的?",
onFinished: (text) => {
console.log("\nFinal result 111:\n", text);
},
});
const config: any = {
userId: process.env.MI_USER!,
password: process.env.MI_PASS!,
did: process.env.MI_DID,
tts: "doubao",
};
const speaker = new AISpeaker(config);
await speaker.initMiServices();
await speaker.response({ stream });
const res = await stream.wasFinished();
console.log("\nFinal result 222:\n", res);
}

View File

@ -5,6 +5,7 @@ import { runWithDB } from "../src/services/db";
import { testDB } from "./db";
import { testSpeaker } from "./speaker";
import { testOpenAI } from "./openai";
import { testMyBot } from "./bot";
dotenv.config();
@ -12,7 +13,8 @@ async function main() {
println(kBannerASCII);
// testDB();
// testSpeaker();
testOpenAI();
// testOpenAI();
testMyBot();
}
runWithDB(main);