mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-02 19:34:04 +00:00
Make this issue more clearly exposed to developers
This commit is contained in:
parent
e52a734818
commit
3a3f880e5a
@ -196,7 +196,9 @@ class _OllamaCommon(BaseLanguageModel):
|
||||
if response.status_code != 200:
|
||||
if response.status_code == 404:
|
||||
raise OllamaEndpointNotFoundError(
|
||||
"Ollama call failed with status code 404."
|
||||
"Ollama call failed with status code 404. "
|
||||
"Maybe your model is not found "
|
||||
f"and you should pull the model with `ollama pull {self.model}`."
|
||||
)
|
||||
else:
|
||||
optional_detail = response.json().get("error")
|
||||
|
Loading…
Reference in New Issue
Block a user