|
|
|
@ -83,7 +83,7 @@ class Agent:
|
|
|
|
|
pdf_path (str): The path to the pdf
|
|
|
|
|
list_of_pdf (str): The list of pdf
|
|
|
|
|
tokenizer (Any): The tokenizer
|
|
|
|
|
memory (AbstractDatabase): The memory
|
|
|
|
|
memory (AbstractVectorDatabase): The memory
|
|
|
|
|
preset_stopping_token (bool): Enable preset stopping token
|
|
|
|
|
traceback (Any): The traceback
|
|
|
|
|
traceback_handlers (Any): The traceback handlers
|
|
|
|
@ -168,7 +168,7 @@ class Agent:
|
|
|
|
|
pdf_path: Optional[str] = None,
|
|
|
|
|
list_of_pdf: Optional[str] = None,
|
|
|
|
|
tokenizer: Optional[Any] = None,
|
|
|
|
|
long_term_memory: Optional[AbstractDatabase] = None,
|
|
|
|
|
long_term_memory: Optional[AbstractVectorDatabase] = None,
|
|
|
|
|
preset_stopping_token: Optional[bool] = False,
|
|
|
|
|
traceback: Any = None,
|
|
|
|
|
traceback_handlers: Any = None,
|
|
|
|
|