Update app.py
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ class VectorStore:
|
|
55 |
#f"Name: {name}. Ingredients: {ingr}. Instructions: {instr}. Cuisine: {cui}. Total time: {total} minutes."
|
56 |
#for name, ingr, instr, cui, total in zip(names, ingredients, instructions, cuisine, total_time)
|
57 |
f"Name: {name}. Ingredients: {ingr}. Instructions: {instr}."
|
58 |
-
for name, ingr, instr
|
59 |
]
|
60 |
|
61 |
# Ajouter les embeddings au store de vecteurs
|
|
|
55 |
#f"Name: {name}. Ingredients: {ingr}. Instructions: {instr}. Cuisine: {cui}. Total time: {total} minutes."
|
56 |
#for name, ingr, instr, cui, total in zip(names, ingredients, instructions, cuisine, total_time)
|
57 |
f"Name: {name}. Ingredients: {ingr}. Instructions: {instr}."
|
58 |
+
for name, ingr, instr in zip(names, ingredients, instructions)
|
59 |
]
|
60 |
|
61 |
# Ajouter les embeddings au store de vecteurs
|