Commit ·
556b474
1
Parent(s): 11a7948
Upload app.py
Browse files
app.py
CHANGED
|
@@ -24,7 +24,7 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
| 24 |
with st.chat_message("user"):
|
| 25 |
st.markdown(prompt)
|
| 26 |
|
| 27 |
-
with st.chat_message("assistant"
|
| 28 |
message_placeholder = st.empty()
|
| 29 |
full_response = ""
|
| 30 |
for response in openai.ChatCompletion.create(
|
|
|
|
| 24 |
with st.chat_message("user"):
|
| 25 |
st.markdown(prompt)
|
| 26 |
|
| 27 |
+
with st.chat_message("assistant"):
|
| 28 |
message_placeholder = st.empty()
|
| 29 |
full_response = ""
|
| 30 |
for response in openai.ChatCompletion.create(
|