Skip to content

Commit fc5dede

Browse files
committed
fix linter issue
1 parent 5382ea2 commit fc5dede

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ollama_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def chat(
6969
end="",
7070
flush=True,
7171
)
72-
response += chunk.content
72+
response += str(chunk.content)
7373
logger.info(f"Output: {response}")
7474
else:
7575
response = chat_model.invoke(

0 commit comments

Comments
 (0)