Skip to content

Commit 57c94e1

Browse files
committed
chore: format
1 parent d1d94a7 commit 57c94e1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

core/llm/llm.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,9 @@ function testLLM(
186186
// For Mistral, if no tool calls were received, skip the test
187187
// as it may not support forced tool use
188188
if (args === "" && llm.constructor.name === "Mistral") {
189-
console.log("Mistral did not return tool calls, skipping assertion");
189+
console.log(
190+
"Mistral did not return tool calls, skipping assertion",
191+
);
190192
return;
191193
}
192194

core/llm/openaiTypeConverters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export function fromChatCompletionChunk(
200200
arguments: (tool_call as any).function?.arguments,
201201
},
202202
}));
203-
203+
204204
if (toolCalls.length > 0) {
205205
return {
206206
role: "assistant",

0 commit comments

Comments
 (0)