forked from hoangvvo/llm-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from firefliesai/bug-sc-62423-fred-service-erro…
…r-missing-toolcallid-or Bug sc 62423 fred service error missing toolcallid or
- Loading branch information
Showing
4 changed files
with
48 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -384,7 +384,7 @@ export function testLanguageModel(languageModel: LanguageModel) { | |
content: [ | ||
{ | ||
type: "text", | ||
text: "Register a user. You must always fill in random details for all fields. Do not ask for real information.", | ||
text: 'Hi, create a user with the id "a1b2c3", name "John Doe", email "[email protected]", birthDate "1990-05-15", age 34, isActive true, role "user", accountBalance 500.75, phoneNumber "+1234567890123", tags ["developer", "gamer"], and lastLogin "2024-11-09T10:30:00Z".', | ||
}, | ||
], | ||
}, | ||
|
@@ -518,6 +518,50 @@ export function testParallelToolCalls(languageModel: LanguageModel) { | |
true, | ||
); | ||
}); | ||
|
||
test("stream parallel tool calls of same name", async (t) => { | ||
const response = languageModel.stream({ | ||
messages: [ | ||
{ | ||
role: "user", | ||
content: [ | ||
{ | ||
type: "text", | ||
text: "Get me the weather in Boston and the weather in New York.", | ||
}, | ||
], | ||
}, | ||
], | ||
tools, | ||
}); | ||
|
||
let current = await response.next(); | ||
while (!current.done) { | ||
log(current.value); | ||
current = await response.next(); | ||
} | ||
|
||
log(current.value); | ||
|
||
const toolCallParts = current.value.content.filter( | ||
(part) => part.type === "tool-call", | ||
); | ||
|
||
t.assert.equal(toolCallParts.length, 2); | ||
const weatherCall1 = toolCallParts.find( | ||
(part) => | ||
part.toolName === "get_weather" && | ||
(part.args?.["location"] as string).includes("Boston"), | ||
); | ||
const weatherCall2 = toolCallParts.find( | ||
(part) => | ||
part.toolName === "get_weather" && | ||
(part.args?.["location"] as string).includes("New York"), | ||
); | ||
|
||
t.assert.equal(!!weatherCall1, true); | ||
t.assert.equal(!!weatherCall2, true); | ||
}); | ||
} | ||
|
||
export function log(value: ModelResponse | PartialModelResponse) { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.