Spaces:
Runtime error
Runtime error
Kushwanth Chowday Kandala
commited on
Commit
•
c2e5bed
1
Parent(s):
a969331
SyntaxError: expected ':'
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ def chat_actions():
|
|
91 |
# Create a list of lists
|
92 |
data = []
|
93 |
i = 0
|
94 |
-
for res in result['matches']
|
95 |
i = i + 1
|
96 |
data.append([f"{i}⭐", res['score'], res['metadata']['text']])
|
97 |
|
|
|
91 |
# Create a list of lists
|
92 |
data = []
|
93 |
i = 0
|
94 |
+
for res in result['matches']:
|
95 |
i = i + 1
|
96 |
data.append([f"{i}⭐", res['score'], res['metadata']['text']])
|
97 |
|