Skip to content

Commit 8b92ffa

Browse files
committed
fix: trigger redeploy
1 parent 29a0dcd commit 8b92ffa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/server/textGeneration/reasoning.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export async function generateSummaryOfReasoning(buffer: string): Promise<string
1111
const messages = [
1212
{
1313
from: "user" as const,
14-
content: buffer.slice(-200),
14+
content: buffer.slice(-300),
1515
},
1616
];
1717

@@ -51,7 +51,7 @@ The text might be incomplete, try your best to summarize it in one very short se
5151
messages: [
5252
{
5353
from: "user",
54-
content: buffer.slice(-400),
54+
content: buffer.slice(-300),
5555
},
5656
],
5757
preprompt: `You are tasked with summarizing the latest reasoning steps. Never describe results of the reasoning, only the process. Remain vague in your summary.

0 commit comments

Comments
 (0)