Spaces:
Sleeping
Sleeping
Fixed build problem
Browse files
app.py
CHANGED
|
@@ -21,7 +21,7 @@ user_input = st.text_input('Ask me a question')
|
|
| 21 |
if st.button("Submit"):
|
| 22 |
if user_input:
|
| 23 |
messages = [
|
| 24 |
-
{"role": "system", "content": f"Context: {context}"
|
| 25 |
{"role": "user","content": user_input}
|
| 26 |
]
|
| 27 |
|
|
|
|
| 21 |
if st.button("Submit"):
|
| 22 |
if user_input:
|
| 23 |
messages = [
|
| 24 |
+
{"role": "system", "content": f"Context: {context}"},
|
| 25 |
{"role": "user","content": user_input}
|
| 26 |
]
|
| 27 |
|