Skip to content

Commit fd6ec2f

Browse files
committed
feat: refactor chat stream to remove state machine and simplfy logic
1 parent 1a85228 commit fd6ec2f

File tree

5 files changed

+255
-258
lines changed

5 files changed

+255
-258
lines changed

integration-tests/models/__snapshots__/test_tools_llama/test_flash_llama_grammar_tools_insufficient_information_stream.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"choices": [
33
{
44
"delta": {
5-
"content": " assistant",
5+
"content": "!",
66
"role": "assistant",
77
"tool_calls": null
88
},
@@ -11,7 +11,7 @@
1111
"logprobs": null
1212
}
1313
],
14-
"created": 1739441937,
14+
"created": 1740432006,
1515
"id": "",
1616
"model": "meta-llama/Llama-3.1-8B-Instruct",
1717
"object": "chat.completion.chunk",

integration-tests/models/__snapshots__/test_tools_llama/test_flash_llama_grammar_tools_sea_creatures_stream.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"choices": [
33
{
44
"delta": {
5-
"content": " Oracle",
5+
"content": ".",
66
"role": "assistant",
77
"tool_calls": null
88
},
@@ -11,7 +11,7 @@
1111
"logprobs": null
1212
}
1313
],
14-
"created": 1739444803,
14+
"created": 1740432012,
1515
"id": "",
1616
"model": "meta-llama/Llama-3.1-8B-Instruct",
1717
"object": "chat.completion.chunk",

integration-tests/models/__snapshots__/test_tools_llama/test_flash_llama_grammar_tools_sea_creatures_stream_none.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"logprobs": null
1212
}
1313
],
14-
"created": 1739454835,
14+
"created": 1740433572,
1515
"id": "",
1616
"model": "meta-llama/Llama-3.1-8B-Instruct",
1717
"object": "chat.completion.chunk",

integration-tests/models/test_tools_llama.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,8 @@ async def test_flash_llama_grammar_tools_insufficient_information_stream(
281281
last_response = response
282282
assert response.choices[0].delta.tool_calls is None
283283

284-
assert count == 5
285-
assert content_generated == "I am a helpful assistant"
284+
assert count == 6
285+
assert content_generated == "I am a helpful assistant!"
286286
assert last_response == response_snapshot
287287

288288

@@ -318,10 +318,10 @@ async def test_flash_llama_grammar_tools_sea_creatures_stream(
318318
last_response = response
319319
assert response.choices[0].delta.tool_calls is None
320320

321-
assert count == 77
321+
assert count == 78
322322
assert (
323323
content_generated
324-
== "There was a wise old octopus named Oracle. He lived in a cozy little cave beneath the waves with his best friend, a curious seahorse named Finley. One day, Finley met a playful dolphin named Daisy, and the three became inseparable. They spent their days exploring the ocean, playing hide-and-seek, and learning about the wonders of the sea from Oracle"
324+
== "There was a wise old octopus named Oracle. He lived in a cozy little cave beneath the waves with his best friend, a curious seahorse named Finley. One day, Finley met a playful dolphin named Daisy, and the three became inseparable. They spent their days exploring the ocean, playing hide-and-seek, and learning about the wonders of the sea from Oracle."
325325
)
326326
assert last_response == response_snapshot
327327

@@ -401,7 +401,6 @@ async def test_flash_llama_grammar_tools_sea_creatures_stream_none(
401401
assert response.choices[0].delta.tool_calls is None
402402

403403
assert count == 100
404-
print(content_generated)
405404
assert (
406405
content_generated
407406
== "Once upon a time, in a vibrant ocean filled with coral reefs and schools of shimmering fish, lived three dear friends: Luna the sea turtle, Finley the friendly fish, and Crusty the wise crab.\n\nLuna was the oldest of the three. She had traveled the world, exploring hidden caves and shipwrecks, and collecting sparkling shells and shiny pebbles. Her shell was a beautiful mosaic of blues and greens, and her gentle eyes twinkled with the secrets of the deep"

0 commit comments

Comments
 (0)