Spaces:
Runtime error
Runtime error
Kajise Org
commited on
Commit
•
aaffd14
1
Parent(s):
671308a
Add numbering to prompt
Browse files
app.py
CHANGED
@@ -48,7 +48,7 @@ def search_ddg(question: str):
|
|
48 |
continue
|
49 |
|
50 |
for step in range(len(results)):
|
51 |
-
output_string += f"{step}. {results[step]} \n"
|
52 |
|
53 |
return output_string
|
54 |
|
|
|
48 |
continue
|
49 |
|
50 |
for step in range(len(results)):
|
51 |
+
output_string += f"{step + 1}. {results[step]} \n"
|
52 |
|
53 |
return output_string
|
54 |
|