Update app.py
Browse files
app.py
CHANGED
@@ -41,6 +41,7 @@ def receipt(dish: str, persons: int, agent: CodeAgent) -> str:
|
|
41 |
A formatted string with the recipe details.
|
42 |
"""
|
43 |
websites = find_best_receipt_websites(dish, agent)
|
|
|
44 |
|
45 |
for website in websites.split(","):
|
46 |
reasoning_prompt = f"""
|
|
|
41 |
A formatted string with the recipe details.
|
42 |
"""
|
43 |
websites = find_best_receipt_websites(dish, agent)
|
44 |
+
print(f"Found websites: {websites}")
|
45 |
|
46 |
for website in websites.split(","):
|
47 |
reasoning_prompt = f"""
|