Update app.py
Browse files
app.py
CHANGED
@@ -33,9 +33,6 @@ st.markdown("Welcome to the Hugging Face Agent and Tools app! This app allows yo
|
|
33 |
import pandas as pd
|
34 |
from io import StringIO
|
35 |
with st.sidebar:
|
36 |
-
with st.expander("Choose tools"):
|
37 |
-
agent_config.configure()
|
38 |
-
|
39 |
with st.expander("Set content and context"):
|
40 |
img_file_buffer = st.file_uploader('Upload a PNG image', type='png')
|
41 |
if img_file_buffer is not None:
|
@@ -96,10 +93,10 @@ with tabs[0]:
|
|
96 |
# Tab 2: URL and Tools
|
97 |
with tabs[1]:
|
98 |
#
|
99 |
-
|
100 |
|
101 |
# Tab 3: User Description
|
102 |
-
|
103 |
#
|
104 |
app_user_desc()
|
105 |
|
|
|
33 |
import pandas as pd
|
34 |
from io import StringIO
|
35 |
with st.sidebar:
|
|
|
|
|
|
|
36 |
with st.expander("Set content and context"):
|
37 |
img_file_buffer = st.file_uploader('Upload a PNG image', type='png')
|
38 |
if img_file_buffer is not None:
|
|
|
93 |
# Tab 2: URL and Tools
|
94 |
with tabs[1]:
|
95 |
#
|
96 |
+
agent_config.configure()
|
97 |
|
98 |
# Tab 3: User Description
|
99 |
+
with tabs[2]:
|
100 |
#
|
101 |
app_user_desc()
|
102 |
|