Spaces:
Sleeping
Sleeping
File size: 2,416 Bytes
85a758a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
import gradio as gr
import requests
SPOONACULAR_API_KEY = "71259036cfb3405aa5d49c1220a988c5"
recipe_id_map = {}
# search for recipes
def search_recipes(ingredient, cuisine, dietary):
global recipe_id_map
url = "https://api.spoonacular.com/recipes/complexSearch"
params = {
"query": ingredient,
"cuisine": cuisine,
"diet": dietary,
"number": 3,
"apiKey": SPOONACULAR_API_KEY
}
res = requests.get(url, params=params)
data = res.json()
if "results" not in data or not data["results"]:
recipe_id_map = {}
return gr.update(choices=[], visible=True, label="No recipes found"), gr.update(value="No recipes found.")
recipe_id_map = {r["title"]: r["id"] for r in data["results"]}
return gr.update(choices=list(recipe_id_map.keys()), visible=True, label="Select a recipe"), gr.update(value="Select a recipe from the dropdown above.")
# get recipe details
def get_recipe_details(selected_title):
if not selected_title or selected_title not in recipe_id_map:
return "Please select a valid recipe."
recipe_id = recipe_id_map[selected_title]
url = f"https://api.spoonacular.com/recipes/{recipe_id}/information"
params = {"apiKey": SPOONACULAR_API_KEY}
res = requests.get(url, params=params)
data = res.json()
title = data.get("title", "Unknown Title")
time = data.get("readyInMinutes", "N/A")
instructions = data.get("instructions") or "No instructions available."
return f"### 🍽️ {title}\n**⏱️ Cook Time:** {time} minutes\n\n**📋 Instructions:**\n{instructions}"
# UI
with gr.Blocks() as demo:
gr.Markdown("## 🥗 The BiteBot")
with gr.Row():
ingredient = gr.Textbox(label="Preferred Ingredient", placeholder="e.g., chicken")
cuisine = gr.Textbox(label="Preferred Cuisine", placeholder="e.g., Indian")
diet = gr.Textbox(label="Dietary Restrictions", placeholder="e.g., vegetarian")
search_button = gr.Button("Search Recipes")
recipe_dropdown = gr.Dropdown(label="Select a recipe", visible=False)
recipe_output = gr.Markdown()
search_button.click(
fn=search_recipes,
inputs=[ingredient, cuisine, diet],
outputs=[recipe_dropdown, recipe_output]
)
recipe_dropdown.change(
fn=get_recipe_details,
inputs=recipe_dropdown,
outputs=recipe_output
)
demo.launch()
|