fix explanations
Browse files
app.py
CHANGED
@@ -67,15 +67,20 @@ with st.expander(label="How to present your idea to get the best story π", ex
|
|
67 |
- π Give as much **context** as possible. For example, what is the problem you are trying to solve? If you have a good name for your idea, share it.
|
68 |
- π€ What is the **audience** for your idea? Who are the people that should be interested in it?
|
69 |
|
70 |
-
Once you have shared this information,
|
71 |
-
|
72 |
The different recipes available are: `sell`, `motivate`, `convince`, `connect`, `explain`, `lead`, `impress`
|
73 |
|
74 |
-
|
|
|
|
|
75 |
|
76 |
__Examples of good and bad inputs:__
|
77 |
|
78 |
-
β
`I need a pitch for a new app that helps people find the best restaurants in town. I will present it to angel investors. The name of the app is "Foodie".`
|
|
|
|
|
|
|
|
|
79 |
|
80 |
β `I need a pitch for a new app. It's cool.`
|
81 |
"""
|
@@ -104,17 +109,12 @@ if check_input:
|
|
104 |
st.write("Choose the recipe you want to use for your story.")
|
105 |
|
106 |
recipe_choices_col = st.columns(7)
|
107 |
-
_other_choices = [
|
108 |
-
recipe
|
109 |
-
for recipe in RECIPES
|
110 |
-
if recipe not in [recipe_choices["recipe"], recipe_choices["second_recipe"]]
|
111 |
-
]
|
112 |
for idx, recipe in enumerate(RECIPES):
|
113 |
with recipe_choices_col[idx]:
|
114 |
if recipe == recipe_choices["recipe"]:
|
115 |
-
_recipe = f"π₯
|
116 |
elif recipe == recipe_choices["second_recipe"]:
|
117 |
-
_recipe = f"π₯
|
118 |
else:
|
119 |
_recipe = recipe
|
120 |
|
|
|
67 |
- π Give as much **context** as possible. For example, what is the problem you are trying to solve? If you have a good name for your idea, share it.
|
68 |
- π€ What is the **audience** for your idea? Who are the people that should be interested in it?
|
69 |
|
70 |
+
Once you have shared this information, you will have the opportunity to choose a recipe to craft your story.
|
|
|
71 |
The different recipes available are: `sell`, `motivate`, `convince`, `connect`, `explain`, `lead`, `impress`
|
72 |
|
73 |
+
You can choose the recipe that best fits your idea, but to help you decide we will mark the 1st and 2nd best recipes with π₯ and π₯ respectively.
|
74 |
+
|
75 |
+
---
|
76 |
|
77 |
__Examples of good and bad inputs:__
|
78 |
|
79 |
+
β
`I need a pitch for a new app that helps people find the best restaurants in town based on their previous feedback. I will present it to angel investors. The name of the app is "Foodie".`
|
80 |
+
|
81 |
+
β
`I want to present to my friends the idea of a collaborative group of people that help each other to achieve their goals. I want to motivate them to join the group.`
|
82 |
+
|
83 |
+
β
`I'm going to present a new way to manage projects to my team. I want to convince them that this new method will help us be more efficient, reduce stress, and deliver better results.`
|
84 |
|
85 |
β `I need a pitch for a new app. It's cool.`
|
86 |
"""
|
|
|
109 |
st.write("Choose the recipe you want to use for your story.")
|
110 |
|
111 |
recipe_choices_col = st.columns(7)
|
|
|
|
|
|
|
|
|
|
|
112 |
for idx, recipe in enumerate(RECIPES):
|
113 |
with recipe_choices_col[idx]:
|
114 |
if recipe == recipe_choices["recipe"]:
|
115 |
+
_recipe = f"π₯{recipe}"
|
116 |
elif recipe == recipe_choices["second_recipe"]:
|
117 |
+
_recipe = f"π₯{recipe}"
|
118 |
else:
|
119 |
_recipe = recipe
|
120 |
|