conversation translation passes.

This commit is contained in:
Jordan Hewitt 2025-01-25 15:57:15 -08:00
parent edff1a7ab0
commit 56d95737a3
3 changed files with 7 additions and 4 deletions

View File

@ -59,7 +59,9 @@ export class Translator {
headers: { "Content-Type": "application/json" }
});
const data = await res.json();
console.log(data)
return data.translatedText
}
}

View File

@ -8,9 +8,9 @@ describe('Conversation', () => {
let conversation: Conversation;
beforeEach(() => {
const translator = new Translator("en", "sp");
const translator = new Translator("en", "es");
const s1: Speaker = { language: "en", id: "s1" };
const s2: Speaker = { id: "s2", language: "sp" }
const s2: Speaker = { id: "s2", language: "es" }
conversation = new Conversation(translator, s1, s2);
});
@ -18,7 +18,7 @@ describe('Conversation', () => {
conversation.addMessage({ id: "s1", language: "en" }, "Hello");
expect(conversation.length).toBe(1);
expect(conversation[0].speaker.id).toEqual("s1");
expect(conversation[0].text).toEqual("hello");
expect(conversation[0].text).toEqual("Hello");
});
it('should translate the last message in the conversation', async () => {
@ -26,6 +26,6 @@ describe('Conversation', () => {
conversation.addMessage({ id: "s1", language: "en" }, "Hello");
await conversation.translateLast();
expect(conversation[conversation.length - 1].translation).toEqual("Hollla");
expect(conversation[conversation.length - 1].translation).toEqual("Hola");
});
});

View File

@ -30,6 +30,7 @@ export class Conversation extends Array<Message> {
public async translateMessage(i : number) {
if (!this[i]) throw new Error(`${i} is not a valid message number`);
const otherSpeaker = this[i].speaker.id === this.s1.id ? this.s2 : this.s1
console.log(`Translating sentence to %s: %s`, otherSpeaker.language, this[i].text)
await this[i].translate(this.translator, otherSpeaker.language);
}