forked from Archives/langchain
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:
parent
577ec92f16
commit
95d578d246
@ -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…
Reference in New Issue
Block a user