fix tts multiroom probably

This commit is contained in:
Elijah R 2024-11-25 19:30:38 -05:00
parent 1385c555f4
commit 6031b94a3b
2 changed files with 6 additions and 4 deletions

View file

@ -108,7 +108,7 @@ if (config.discord.enabled) {
// Image upload
let img = new ImageUploader(app, config.images);
let primaryRoom = new MSAgentChatRoom(config.chat, rootLogger.child({module: "Room#Default"}), config.agents, db, img, tts, discord);
let primaryRoom = new MSAgentChatRoom("default", config.chat, rootLogger.child({module: "Room#Default"}), config.agents, db, img, tts, discord);
let rooms = new Map<string, MSAgentChatRoom>();
@ -153,7 +153,7 @@ app.register(async (app) => {
if (rooms.has(requestedRoom)) {
room = rooms.get(requestedRoom)!;
} else {
room = new MSAgentChatRoom(config.chat, rootLogger.child({module: `Room#${requestedRoom}`}), config.agents, db, img, tts, null);
room = new MSAgentChatRoom(requestedRoom, config.chat, rootLogger.child({module: `Room#${requestedRoom}`}), config.agents, db, img, tts, null);
rooms.set(requestedRoom, room);
}
} else {

View file

@ -27,8 +27,9 @@ export class MSAgentChatRoom {
img: ImageUploader;
discord: DiscordLogger | null;
private logger: Logger;
private id: string;
constructor(config: ChatConfig, logger: Logger, agents: AgentConfig[], db: Database, img: ImageUploader, tts: TTSClient | null, discord: DiscordLogger | null) {
constructor(id: string, config: ChatConfig, logger: Logger, agents: AgentConfig[], db: Database, img: ImageUploader, tts: TTSClient | null, discord: DiscordLogger | null) {
this.agents = agents;
this.clients = [];
this.config = config;
@ -37,6 +38,7 @@ export class MSAgentChatRoom {
this.img = img;
this.discord = discord;
this.logger = logger;
this.id = id;
}
addClient(client: Client) {
@ -106,7 +108,7 @@ export class MSAgentChatRoom {
};
if (this.tts !== null) {
try {
let filename = await this.tts.synthesizeToFile(message, (++this.msgId).toString(10));
let filename = await this.tts.synthesizeToFile(message, `${this.id}-${++this.msgId}`);
msg.data.audio = '/api/tts/' + filename;
} catch (e) {
this.logger.error(`Error synthesizing TTS: ${(e as Error).message}`);