Update app.py
Browse files
app.py
CHANGED
|
@@ -285,7 +285,7 @@ prompt_tt = ChatPromptTemplate.from_messages([("human", message_thr)])
|
|
| 285 |
rag_chain_tt = prompt_tt | llm_chat
|
| 286 |
|
| 287 |
# Load the check_reminder data
|
| 288 |
-
with open("
|
| 289 |
important_classification_data = json.load(f)
|
| 290 |
|
| 291 |
# Convert the intent classification data into Document format
|
|
|
|
| 285 |
rag_chain_tt = prompt_tt | llm_chat
|
| 286 |
|
| 287 |
# Load the check_reminder data
|
| 288 |
+
with open("important_classification_data.json", 'r') as f:
|
| 289 |
important_classification_data = json.load(f)
|
| 290 |
|
| 291 |
# Convert the intent classification data into Document format
|