Skip to content

Commit 04ee442

Browse files
author
Chris
committed
app update
1 parent 3bcad33 commit 04ee442

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

6-text-generation-apps/app-recipe.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
filter = input("Filter (for example, vegetarian, vegan, or gluten-free: ")
2121

2222
# interpolate the number of recipes into the prompt an ingredients
23-
prompt = f"Show me {no_recipes} recipes for a dish with the following ingredients: {ingredients}. Per recipe, list all the ingredients used, no {filter}"
23+
prompt = f"Show me {no_recipes} recipes for a dish with the following ingredients: {ingredients}. Per recipe, list all the ingredients used, no {filter}: "
2424

2525

2626
# engine
@@ -29,20 +29,20 @@
2929
# deployment_id
3030
deployment_name = "chris-eastus"
3131

32-
completion = openai.Completion.create(engine=deployment_name, prompt=prompt, max_tokens=600)
32+
completion = openai.Completion.create(engine=deployment_name, prompt=prompt, max_tokens=600, temperature=0.1)
3333

3434
# print response
3535
print("Recipes:")
3636
print(completion.choices[0].text)
3737

3838
old_prompt_result = completion.choices[0].text
39-
prompt_shopping = "Produce a shopping list for the generated recipes and please don't include ingredients that I already have."
39+
prompt_shopping = "Produce a shopping list, and please don't include ingredients that I already have at home: "
4040

41-
new_prompt = f"{old_prompt_result} {prompt_shopping}"
41+
new_prompt = f"Given ingredients at home {ingredients} and these generated recipes: {old_prompt_result}, {prompt_shopping}"
4242
completion = openai.Completion.create(engine=deployment_name, prompt=new_prompt, max_tokens=600)
4343

4444
# print response
45-
print("Shopping list:")
45+
print("\n=====Shopping list ======= \n")
4646
print(completion.choices[0].text)
4747

4848
# very unhappy _____.

6-text-generation-apps/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# engine
1919
engine = "davinci-001"
2020

21-
# deployment_id
21+
# deployment_id, azure specific
2222
deployment_name = os.getenv("DEPLOYMENT_NAME")
2323

2424
completion = openai.Completion.create(engine=deployment_name, prompt=prompt, max_tokens=600)

0 commit comments

Comments
 (0)