Spaces:
Sleeping
Sleeping
Update modules/history.py
Browse files- modules/history.py +2 -2
modules/history.py
CHANGED
@@ -9,10 +9,10 @@ class ChatHistory:
|
|
9 |
st.session_state["history"] = self.history
|
10 |
|
11 |
def default_greeting(self):
|
12 |
-
return "
|
13 |
|
14 |
def default_prompt(self, topic):
|
15 |
-
return f"
|
16 |
|
17 |
def initialize_user_history(self):
|
18 |
st.session_state["user"] = [self.default_greeting()]
|
|
|
9 |
st.session_state["history"] = self.history
|
10 |
|
11 |
def default_greeting(self):
|
12 |
+
return "Hello ! π"
|
13 |
|
14 |
def default_prompt(self, topic):
|
15 |
+
return f"Hello! {topic} ask anything about π€"
|
16 |
|
17 |
def initialize_user_history(self):
|
18 |
st.session_state["user"] = [self.default_greeting()]
|