Spaces:
Sleeping
Sleeping
Commit
·
47587a5
1
Parent(s):
76e1a88
Update app.py
Browse files
app.py
CHANGED
|
@@ -50,7 +50,6 @@ option = st.selectbox('What is your role?', ('Support', 'Sales'))
|
|
| 50 |
st.write('You selected', option)
|
| 51 |
|
| 52 |
prompt = st.chat_input("Say something to our #CodeWars bot...")
|
| 53 |
-
context = [] # the context stores a conversation history, you can use this to make the model more context aware
|
| 54 |
if(prompt):
|
| 55 |
with st.chat_message(option):
|
| 56 |
st.write(f"{datetime.datetime.now()} :red[{option}:] ", prompt)
|
|
|
|
| 50 |
st.write('You selected', option)
|
| 51 |
|
| 52 |
prompt = st.chat_input("Say something to our #CodeWars bot...")
|
|
|
|
| 53 |
if(prompt):
|
| 54 |
with st.chat_message(option):
|
| 55 |
st.write(f"{datetime.datetime.now()} :red[{option}:] ", prompt)
|