From 43cc28f1cfe4238c3a0420341bbee43d641465f9 Mon Sep 17 00:00:00 2001 From: Oscar Date: Thu, 28 May 2026 21:26:06 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix(browser):=20=D0=98=D0=B7?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=20=D1=80=D0=B0=D0=B7=D0=BC=D0=B5?= =?UTF-8?q?=D1=80=20viewport=20=D0=BD=D0=B0=201920x1080,=20=D0=B4=D0=BE?= =?UTF-8?q?=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=B2=D1=8B=D0=B2=D0=BE?= =?UTF-8?q?=D0=B4=20sessionId=20=D0=B2=20createMessage.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/openai.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openai.ts b/src/openai.ts index 1a64288..2a0284a 100644 --- a/src/openai.ts +++ b/src/openai.ts @@ -85,7 +85,7 @@ export async function askLLM(userMessage: string) { export async function createMessage(resume: string, message: string, prompt?: string) { const client = await getClient() - console.log('[createMessage] client.instance: ', client.instance) + console.log('[createMessage] client.instance: ', !!client.instance) const session = await client.session.create({ body: { title: 'Cover letter' } }) const sessionId = session.data!.id