awacke1 commited on
Commit
1c78f66
Β·
1 Parent(s): 0670ec0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -0
app.py CHANGED
@@ -61,3 +61,26 @@ elif option == "View Episodic Memory":
61
  elif option == "Add Fact to Semantic Memory":
62
  fact = st.text_input("Enter a fact")
63
  category = st.text_input("Enter a category")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  elif option == "Add Fact to Semantic Memory":
62
  fact = st.text_input("Enter a fact")
63
  category = st.text_input("Enter a category")
64
+ source = st.text_input("Enter a source")
65
+ if st.button("Add Fact"):
66
+ add_fact(fact, category, source)
67
+ save_data()
68
+ st.success("Fact added to semantic memory!")
69
+ st.sidebar.success("Fact added to semantic memory!")
70
+ elif option == "Add Event to Episodic Memory":
71
+ event = st.text_input("Enter an event")
72
+ sentiment = st.selectbox("Select a sentiment", ["happy", "sad", "neutral"])
73
+ date = st.date_input("Select a date")
74
+ if st.button("Add Event"):
75
+ add_event(event, sentiment, date)
76
+ save_data()
77
+ st.success("Event added to episodic memory!")
78
+ st.sidebar.success("Event added to episodic memory!")
79
+ else:
80
+ st.write("Please select an option from the sidebar.")
81
+
82
+
83
+ # This program uses Streamlit to create a web app that allows the user to view and add to both semantic and episodic memory. The semantic memory is stored as a list of dictionaries, where each dictionary represents a fact and includes the fact itself, the category it belongs to, and the source of the fact. The episodic memory is also stored as a list of dictionaries, where each dictionary represents an event and includes the event itself, the sentiment associated with the event, and the date the event occurred.
84
+ # The program allows the user to view both types of memory by selecting an option from the sidebar. If the user selects "View Semantic Memory", the program displays all of the facts stored in semantic memory. If the user selects "View Episodic Memory", the program displays all of the events stored in episodic memory.
85
+ # The program also allows the user to add new facts to semantic memory or new events to episodic memory by selecting an option from the sidebar and filling out a form with the relevant information. When the user clicks the "Add Fact" or "Add Event" button, the new fact or event is added to the appropriate list of dictionaries and saved to a CSV file. The program then displays a success message indicating that the fact or event was added to memory.
86
+ # Overall, this program demonstrates how semantic and episodic memory can be modeled using Python list dictionaries, and how these types of memory can be used to track both facts and observations, as well as sentiments associated with past experiences.