Kunal
commited on
Commit
·
32d0314
1
Parent(s):
9440b42
Removed verbose in app.py
Browse files
app.py
CHANGED
@@ -39,8 +39,7 @@ def chat_with_pdf(query: str, pdf_text: str, chat_history: list) -> str:
|
|
39 |
#Agent to handle the chat with PDF
|
40 |
agent = CodeAgent(
|
41 |
model=model,
|
42 |
-
tools=[process_pdf, chat_with_pdf]
|
43 |
-
verbose=True
|
44 |
)
|
45 |
#Gradio Interface
|
46 |
def process_pdf_ui(file):
|
|
|
39 |
#Agent to handle the chat with PDF
|
40 |
agent = CodeAgent(
|
41 |
model=model,
|
42 |
+
tools=[process_pdf, chat_with_pdf]
|
|
|
43 |
)
|
44 |
#Gradio Interface
|
45 |
def process_pdf_ui(file):
|