Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,6 +30,7 @@ def get_response(text, history):
|
|
| 30 |
# For simplicity, we are only using the 'text' argument
|
| 31 |
response = retriever.retrieve(text)
|
| 32 |
r = str(response[0].metadata)+"\n"+response[0].text
|
|
|
|
| 33 |
return r
|
| 34 |
|
| 35 |
|
|
|
|
| 30 |
# For simplicity, we are only using the 'text' argument
|
| 31 |
response = retriever.retrieve(text)
|
| 32 |
r = str(response[0].metadata)+"\n"+response[0].text
|
| 33 |
+
|
| 34 |
return r
|
| 35 |
|
| 36 |
|