Spaces:
Running
Running
more detail prompts
Browse files
app.py
CHANGED
@@ -17,11 +17,14 @@ async def onClick(vacationType,familyType,duration,purpose,interests):
|
|
17 |
"Mankind has discovered aliens some are more advance then us some are not",
|
18 |
"You are a travel agent and depending on the" + vacationType +"you will list down some destinations",
|
19 |
"Also answer based on "+familyType+ "," + duration +","+purpose + "and"+interests,
|
|
|
|
|
|
|
20 |
|
21 |
-
)
|
22 |
-
result_1 = agent.run_sync("for space travel which planet is the best")
|
23 |
result = result_1
|
24 |
-
st.caption(result)
|
25 |
|
26 |
|
27 |
def asyncOnClick(vacationType,familyType,duration,purpose,interests):
|
@@ -49,8 +52,7 @@ async def main():
|
|
49 |
purpose = st.selectbox(label="Purpose of Travel",options=("Honeymoon","anniversary","family vacation","corporate retreat"))
|
50 |
interests = st.selectbox(label="Special Interestl",options=("Photography","gastronomy","wildlife","art"))
|
51 |
|
52 |
-
|
53 |
-
st.caption(body)
|
54 |
|
55 |
if st.button("Search"):
|
56 |
asyncOnClick(vacationType,family,duration,purpose,interests)
|
|
|
17 |
"Mankind has discovered aliens some are more advance then us some are not",
|
18 |
"You are a travel agent and depending on the" + vacationType +"you will list down some destinations",
|
19 |
"Also answer based on "+familyType+ "," + duration +","+purpose + "and"+interests,
|
20 |
+
"Be creative made-up different kinds of planets, aliens, atmosphere",
|
21 |
+
"Take some suggestion from game no-man sky, book hitchhiker's guide to the galaxy etc"
|
22 |
+
),
|
23 |
|
24 |
+
)
|
25 |
+
result_1 = agent.run_sync(user_prompt="for space travel which planet is the best")
|
26 |
result = result_1
|
27 |
+
st.caption(result.data)
|
28 |
|
29 |
|
30 |
def asyncOnClick(vacationType,familyType,duration,purpose,interests):
|
|
|
52 |
purpose = st.selectbox(label="Purpose of Travel",options=("Honeymoon","anniversary","family vacation","corporate retreat"))
|
53 |
interests = st.selectbox(label="Special Interestl",options=("Photography","gastronomy","wildlife","art"))
|
54 |
|
55 |
+
|
|
|
56 |
|
57 |
if st.button("Search"):
|
58 |
asyncOnClick(vacationType,family,duration,purpose,interests)
|