Update app.py
Browse files
app.py
CHANGED
@@ -356,7 +356,7 @@ def retrieved_info(query, rag_model = rag_model):
|
|
356 |
|
357 |
messages = [
|
358 |
{"role": "user", "content": f"{query}"},
|
359 |
-
{"role": "system" , "content": f"Context: {retrieved_context}. Use the information from the Context to answer the query. Provide links
|
360 |
]
|
361 |
|
362 |
outputs = pipe(messages, max_new_tokens=256)
|
|
|
356 |
|
357 |
messages = [
|
358 |
{"role": "user", "content": f"{query}"},
|
359 |
+
{"role": "system" , "content": f"Context: {retrieved_context}. Use the links and information from the Context to answer the query in brief. Provide links in the answer."}
|
360 |
]
|
361 |
|
362 |
outputs = pipe(messages, max_new_tokens=256)
|