This commit is contained in:
Aslan 2025-12-28 18:06:07 +01:00
parent 05875413f9
commit 00211a604f
3 changed files with 9 additions and 4 deletions

View file

@ -41,7 +41,7 @@ const onAI = async (text: string, roomId: string, sender: string) => {
alts: alts,
} as IAdminInstructions;
textMod = `Admin Instructions:\n${instructions}\nPrompt:\n${textMod}`;
textMod = `Admin Instructions:\n${JSON.stringify(instructions)}\nPrompt:\n${textMod}`;
const responseAI = await getTextGemini(textMod);