fix: test for multitask

This commit is contained in:
Jason Liu
2024-02-07 10:53:01 -05:00
parent ca14042225
commit f65ba6b407
+1 -1
View File
@@ -71,7 +71,7 @@ async def test_multi_user_tools_mode_async(model, mode, aclient):
)
resp = []
async for user in await stream_extract(input="Jason is 20, Sarah is 30"):
for user in await stream_extract(input="Jason is 20, Sarah is 30"):
resp.append(user)
print(resp)
assert len(resp) == 2