for test cases
This commit is contained in:
parent
6720b2c058
commit
5df7319bd8
1 changed files with 5 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
from typing import Optional, List
|
||||
from typing import List
|
||||
from langflow import CustomComponent
|
||||
import json
|
||||
from langchain.schema import BaseRetriever
|
||||
|
|
@ -42,10 +42,10 @@ class VectaraSelfQueryRetriverComponent(CustomComponent):
|
|||
|
||||
def build(
|
||||
self,
|
||||
vectorstore: VectorStore = None,
|
||||
document_content_description: str = None,
|
||||
llm: BaseLanguageModel = None,
|
||||
metadata_field_info: List[str] = None,
|
||||
vectorstore: VectorStore,
|
||||
document_content_description: str,
|
||||
llm: BaseLanguageModel,
|
||||
metadata_field_info: List[str],
|
||||
) -> BaseRetriever:
|
||||
|
||||
metadata_field_obj = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue