add empty chunks list

This commit is contained in:
WilliamEspegren 2023-09-17 10:28:37 +02:00
parent a39a204457
commit fe37f97423
No known key found for this signature in database
GPG key ID: 30E0CDDF1B5262CD

View file

@ -14,6 +14,8 @@ def test_stream_chunk_builder():
max_tokens=10,
)
chunks = []
for chunk in response:
print(chunk)
test_stream_chunk_builder()