Spaces:
Sleeping
Sleeping
Commit
·
f735fcc
1
Parent(s):
96c7afb
move .streamlit folder
Browse files- Dockerfile +0 -1
- {.streamlit → src/.streamlit}/config.toml +0 -0
- src/streamlit_app.py +1 -1
Dockerfile
CHANGED
|
@@ -11,7 +11,6 @@ RUN apt-get update && apt-get install -y \
|
|
| 11 |
|
| 12 |
COPY requirements.txt ./
|
| 13 |
COPY src/ ./src/
|
| 14 |
-
COPY .streamlit/ ./src/.streamlit/
|
| 15 |
|
| 16 |
RUN pip3 install -r requirements.txt
|
| 17 |
|
|
|
|
| 11 |
|
| 12 |
COPY requirements.txt ./
|
| 13 |
COPY src/ ./src/
|
|
|
|
| 14 |
|
| 15 |
RUN pip3 install -r requirements.txt
|
| 16 |
|
{.streamlit → src/.streamlit}/config.toml
RENAMED
|
File without changes
|
src/streamlit_app.py
CHANGED
|
@@ -34,7 +34,7 @@ def submit_message():
|
|
| 34 |
st.session_state.response_time = f"{end - start:.2f}"
|
| 35 |
|
| 36 |
st.session_state.conversation.extend(new_messages)
|
| 37 |
-
save_conversation()
|
| 38 |
|
| 39 |
st.subheader("Receptionist Agent")
|
| 40 |
|
|
|
|
| 34 |
st.session_state.response_time = f"{end - start:.2f}"
|
| 35 |
|
| 36 |
st.session_state.conversation.extend(new_messages)
|
| 37 |
+
# save_conversation()
|
| 38 |
|
| 39 |
st.subheader("Receptionist Agent")
|
| 40 |
|