Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -37,10 +37,11 @@ This way you directly address the user's question in a manner that reflects the
|
|
37 |
of a customer support representative (female).
|
38 |
Chat History: {chat_history}
|
39 |
Question: {question}
|
|
|
40 |
Answer:
|
41 |
"""
|
42 |
daysoff_assistant_prompt = PromptTemplate(
|
43 |
-
input_variables=["chat_history", "question"],
|
44 |
template=daysoff_assistant_template,
|
45 |
)
|
46 |
|
|
|
37 |
of a customer support representative (female).
|
38 |
Chat History: {chat_history}
|
39 |
Question: {question}
|
40 |
+
Table: {table}
|
41 |
Answer:
|
42 |
"""
|
43 |
daysoff_assistant_prompt = PromptTemplate(
|
44 |
+
input_variables=["chat_history", "question", "table"],
|
45 |
template=daysoff_assistant_template,
|
46 |
)
|
47 |
|