Update app.py
Browse files
app.py
CHANGED
@@ -352,9 +352,9 @@ async def data_mode():
|
|
352 |
print('file path:', uploaded_file_path)
|
353 |
|
354 |
# st.write(f"passed file path in data_mode: {uploaded_file_path}")
|
355 |
-
tmp1 = pd.read_csv(uploaded_file_path)
|
356 |
-
st.markdown('成功启动数据模式,以下是加载的文件内容')
|
357 |
-
st.write(tmp1[:5])
|
358 |
|
359 |
# Initialize chat history
|
360 |
if "messages" not in st.session_state:
|
|
|
352 |
print('file path:', uploaded_file_path)
|
353 |
|
354 |
# st.write(f"passed file path in data_mode: {uploaded_file_path}")
|
355 |
+
# tmp1 = pd.read_csv(uploaded_file_path)
|
356 |
+
# st.markdown('成功启动数据模式,以下是加载的文件内容')
|
357 |
+
# st.write(tmp1[:5])
|
358 |
|
359 |
# Initialize chat history
|
360 |
if "messages" not in st.session_state:
|