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>
This commit is contained in:
Altay Sansal 2023-04-17 17:49:18 -05:00 committed by GitHub
parent 577ec92f16
commit 95d578d246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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