Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions 06-text-generation-apps/python/aoai-app-recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

deployment=os.environ['AZURE_OPENAI_DEPLOYMENT']

no_recipes = input("No of recipes (for example, 5: ")
no_recipes = input("No of recipes (for example, 1: ")

ingredients = input("List of ingredients (for example, chicken, potatoes, and carrots: ")
ingredients = input("List of ingredients (for example, choclate, ice cream, and coco powder: ")

filter = input("Filter (for example, vegetarian, vegan, or gluten-free: ")

Expand All @@ -42,3 +42,5 @@
print("\n=====Shopping list ======= \n")
print(completion.choices[0].message.content)