Spaces:
Build error
Build error
Yvann commited on
Commit ·
c64abb6
1
Parent(s): 6ddae11
add beautiful colors
Browse files- .streamlit/config.toml +5 -2
- requirements.txt +0 -0
- src/chatbot_csv.py +1 -1
.streamlit/config.toml
CHANGED
|
@@ -1,4 +1,7 @@
|
|
| 1 |
[theme]
|
| 2 |
base = "light"
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
[theme]
|
| 2 |
base = "light"
|
| 3 |
+
primaryColor = "#89CFF0"
|
| 4 |
+
backgroundColor = "#E0F7FE"
|
| 5 |
+
secondaryBackgroundColor = "#FFFCE4"
|
| 6 |
+
textColor = "#000000"
|
| 7 |
+
font = "sans-serif"
|
requirements.txt
CHANGED
|
Binary files a/requirements.txt and b/requirements.txt differ
|
|
|
src/chatbot_csv.py
CHANGED
|
@@ -61,7 +61,7 @@ def main():
|
|
| 61 |
history.generate_messages(response_container)
|
| 62 |
|
| 63 |
if st.session_state["show_csv_agent"]:
|
| 64 |
-
query = st.text_input(label="Use CSV agent for precise information about the structure of your csv file")
|
| 65 |
if query != "":
|
| 66 |
|
| 67 |
old_stdout = sys.stdout
|
|
|
|
| 61 |
history.generate_messages(response_container)
|
| 62 |
|
| 63 |
if st.session_state["show_csv_agent"]:
|
| 64 |
+
query = st.text_input(label="Use CSV agent for precise information about the structure of your csv file", placeholder="ex : how many rows in my file ?")
|
| 65 |
if query != "":
|
| 66 |
|
| 67 |
old_stdout = sys.stdout
|