python调用ollama报错:\ollama\_client.py", line 84, in _stream raise ResponseError(e.response.text, e
python调用ollama报错:\ollama\_client.py", line 84, in _stream raise ResponseError(e.response.text, e.response.status_code) from None
import ollama stream = ollama.chat( model='llama3.1', messages=[{'role': 'user', 'content': 'Why is the sky blue?'}], stream=True, ) for chunk in stream: print(chunk['message']['content'], end='', flush=True)这个怎么解决?