Fix type hint regression (#3033)

Not sure what happened here but some of the file got overwritten by
#2859 which broke filtering logic.

Here is it fixed back to normal.

@hwchase17 can we expedite this if possible :-)

---------

Co-authored-by: Altay Sansal <altay.sansal@tgs.com>
fix_agent_callbacks
Altay Sansal 1 year ago committed by GitHub
parent 577ec92f16
commit 95d578d246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,7 +13,7 @@ class ChatGPTPluginRetriever(BaseRetriever, BaseModel):
url: str
bearer_token: str
top_k: int = 3
filter: Optional[None] = None
filter: Optional[dict] = None
aiosession: Optional[aiohttp.ClientSession] = None
class Config:

Loading…
Cancel
Save