Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -117,4 +117,13 @@ if file_text:
|
|
117 |
st.markdown("**Relationship Graph:**")
|
118 |
display_relationship_graph(top_words)
|
119 |
|
120 |
-
context_words = extract_context_words(text_without_timestamps, top_words
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
st.markdown("**Relationship Graph:**")
|
118 |
display_relationship_graph(top_words)
|
119 |
|
120 |
+
context_words = extract_context_words(text_without_timestamps, top_words)
|
121 |
+
if context_words and all(context_words[0]):
|
122 |
+
st.markdown("**Context Graph:**")
|
123 |
+
display_context_graph(context_words)
|
124 |
+
|
125 |
+
st.markdown("**Combined Context Graph:**")
|
126 |
+
display_combined_context_graph(context_words, top_words) # New combined context graph
|
127 |
+
|
128 |
+
st.markdown("**Context Table:**")
|
129 |
+
display_context_table(context_words)
|