CosmoAI commited on
Commit
cd88d22
·
verified ·
1 Parent(s): c31b56f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ model = genai.GenerativeModel('gemini-pro')
29
  if prompt := st.chat_input("Hi, explain me what goal you want to achieve."):
30
  enprom = f"""
31
  Act as a personal assistant, Understand user intent from the point of view for creating a goal. ask to know more details about the goal.
32
- show your suggestions of routines or tasks which will help to achieve the goal as a list of Task with time to invest and repetation frequency.
33
  Follow all the above instruction for this given input:- {prompt}"""
34
  completion = model.generate_content(enprom)
35
 
 
29
  if prompt := st.chat_input("Hi, explain me what goal you want to achieve."):
30
  enprom = f"""
31
  Act as a personal assistant, Understand user intent from the point of view for creating a goal. ask to know more details about the goal.
32
+ show your suggestions of routines or tasks which will help to achieve the goal as a table of 3 column of Task title, with time to invest, and repetation frequency.
33
  Follow all the above instruction for this given input:- {prompt}"""
34
  completion = model.generate_content(enprom)
35