Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1062,10 +1062,12 @@ with strategies_container:
|
|
| 1062 |
|
| 1063 |
if company_document:
|
| 1064 |
store = create_vector_database_company()
|
| 1065 |
-
|
| 1066 |
store = create_vector_database_financial()
|
| 1067 |
-
|
| 1068 |
store = create_vector_database_intercreditor()
|
|
|
|
|
|
|
| 1069 |
|
| 1070 |
agent_settings = {
|
| 1071 |
"max_iterations": 3,
|
|
|
|
| 1062 |
|
| 1063 |
if company_document:
|
| 1064 |
store = create_vector_database_company()
|
| 1065 |
+
elif financial_document:
|
| 1066 |
store = create_vector_database_financial()
|
| 1067 |
+
elif intercreditor_document:
|
| 1068 |
store = create_vector_database_intercreditor()
|
| 1069 |
+
else:
|
| 1070 |
+
pass
|
| 1071 |
|
| 1072 |
agent_settings = {
|
| 1073 |
"max_iterations": 3,
|