mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-02 19:47:13 +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:
@@ -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
|
||||
|
Reference in New Issue
Block a user