Spaces:
Runtime error
Runtime error
konbraphat51
commited on
Commit
·
c4411de
1
Parent(s):
f2f317f
add message
Browse files
app.py
CHANGED
@@ -117,7 +117,7 @@ def main():
|
|
117 |
results = pd.DataFrame(contents, columns=["管理番号", "放送日", "動画タイトル"])
|
118 |
st.dataframe(results, hide_index=True)
|
119 |
|
120 |
-
selected_index = st.selectbox("
|
121 |
if selected_index is not None:
|
122 |
df_transcription = searcher.get_content(selected_index)
|
123 |
st.dataframe(df_transcription, width=1000)
|
|
|
117 |
results = pd.DataFrame(contents, columns=["管理番号", "放送日", "動画タイトル"])
|
118 |
st.dataframe(results, hide_index=True)
|
119 |
|
120 |
+
selected_index = st.selectbox("管理番号を選択して、Enterを押して書き起こしを表示shi", results["管理番号"])
|
121 |
if selected_index is not None:
|
122 |
df_transcription = searcher.get_content(selected_index)
|
123 |
st.dataframe(df_transcription, width=1000)
|