@@ -18,4 +18,5 @@ response_stream = llm.think(messages)
print("ModelScope Response:")
for chunk in response_stream:
# chunk在my_llm库中已经打印过一遍,这里只需要pass即可
+ # print(chunk, end="", flush=True)
pass
@@ -260,6 +260,7 @@ response_stream = llm.think(messages)
# Chunk already printed in my_llm, just pass here
```