community[patch]: Fix invalid iohttp verify parameter (#24655)

Should fix https://github.com/langchain-ai/langchain/issues/24654
This commit is contained in:
Luca Dorigo 2024-07-25 17:09:21 +02:00 committed by GitHub
parent 221486687a
commit 5fdbdd6bec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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