Nikhil0987 commited on
Commit
d51420d
·
verified ·
1 Parent(s): 6b8ac8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -3,6 +3,10 @@ import json
3
  import google.generativeai as genai
4
 
5
 
 
 
 
 
6
  def add_to_json(new_data):
7
  with open("test.json", "r") as file:
8
  existing_data = json.load(file)
@@ -17,8 +21,8 @@ def add_to_json(new_data):
17
  new_data = {
18
 
19
 
20
- "goal": ,
21
- "reminder":
22
 
23
  }
24
 
 
3
  import google.generativeai as genai
4
 
5
 
6
+
7
+ Goal =st.text_input("Enter your goal:")
8
+
9
+
10
  def add_to_json(new_data):
11
  with open("test.json", "r") as file:
12
  existing_data = json.load(file)
 
21
  new_data = {
22
 
23
 
24
+ "goal": Goal,
25
+
26
 
27
  }
28