mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-06 21:43:44 +00:00
community[patch]: Release 0.2.11 (#24989)
This commit is contained in:
@@ -318,9 +318,9 @@ class _OllamaCommon(BaseLanguageModel):
|
||||
"Content-Type": "application/json",
|
||||
**(self.headers if isinstance(self.headers, dict) else {}),
|
||||
},
|
||||
auth=self.auth,
|
||||
auth=self.auth, # type: ignore[arg-type]
|
||||
json=request_payload,
|
||||
timeout=self.timeout,
|
||||
timeout=self.timeout, # type: ignore[arg-type]
|
||||
) as response:
|
||||
if response.status != 200:
|
||||
if response.status == 404:
|
||||
|
Reference in New Issue
Block a user