mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-20 22:03:52 +00:00
community[patch]: Fix invalid iohttp verify parameter (#24655)
Should fix https://github.com/langchain-ai/langchain/issues/24654
This commit is contained in:
parent
221486687a
commit
5fdbdd6bec
@ -84,7 +84,7 @@ class Requests(BaseModel):
|
||||
url,
|
||||
headers=self.headers,
|
||||
auth=self.auth,
|
||||
verify=self.verify,
|
||||
verify_ssl=self.verify,
|
||||
**kwargs,
|
||||
) as response:
|
||||
yield response
|
||||
@ -94,7 +94,7 @@ class Requests(BaseModel):
|
||||
url,
|
||||
headers=self.headers,
|
||||
auth=self.auth,
|
||||
verify=self.verify,
|
||||
verify_ssl=self.verify,
|
||||
**kwargs,
|
||||
) as response:
|
||||
yield response
|
||||
|
Loading…
Reference in New Issue
Block a user