Update main.py
Browse files
main.py
CHANGED
|
@@ -92,7 +92,7 @@ def bot():
|
|
| 92 |
inventory_df = pd.DataFrame(inventory_list)
|
| 93 |
sales_df = pd.DataFrame(sales_list)
|
| 94 |
|
| 95 |
-
lake = SmartDatalake([inventory_df, sales_df], config={"llm":llm, "response_parser":FlaskResponse, "enable_cache": False, "
|
| 96 |
response = lake.chat(user_question)
|
| 97 |
|
| 98 |
print(user_question)
|
|
|
|
| 92 |
inventory_df = pd.DataFrame(inventory_list)
|
| 93 |
sales_df = pd.DataFrame(sales_list)
|
| 94 |
|
| 95 |
+
lake = SmartDatalake([inventory_df, sales_df], config={"llm":llm, "response_parser":FlaskResponse, "enable_cache": False, "save_logs":False})
|
| 96 |
response = lake.chat(user_question)
|
| 97 |
|
| 98 |
print(user_question)
|