annikwag commited on
Commit
d3da02b
·
verified ·
1 Parent(s): 8ad1360

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -15
app.py CHANGED
@@ -124,14 +124,19 @@ if button:
124
  st.markdown(f"#### [{project_name}]({url})")
125
  # ------- Display first 4 lines + expander -------
126
  full_text = res.payload['page_content']
127
- lines = full_text.split('\n')
128
- short_text = '\n'.join(lines[:4])
129
- st.write(short_text)
130
-
131
- if len(lines) > 4:
 
 
 
 
 
 
132
  with st.expander("Read more"):
133
- st.write('\n'.join(lines[4:]))
134
-
135
  # ------- Additional info below the text -------
136
  metadata = res.payload.get('metadata', {})
137
  countries = metadata.get('countries', "[]")
@@ -168,15 +173,19 @@ if button:
168
  st.markdown(f"#### [{project_name}]({url})")
169
  # ------- Display first 4 lines + expander -------
170
  full_text = res.payload['page_content']
171
- lines = full_text.split('\n')
172
- short_text = '\n'.join(lines[:4])
173
- st.write(short_text)
174
-
175
- if len(lines) > 4:
 
 
 
 
 
 
176
  with st.expander("Read more"):
177
- st.write('\n'.join(lines[4:]))
178
-
179
- # ------- Additional info below the text -------
180
  # Additional text below the content
181
  metadata = res.payload.get('metadata', {})
182
  countries = metadata.get('countries', "[]")
 
124
  st.markdown(f"#### [{project_name}]({url})")
125
  # ------- Display first 4 lines + expander -------
126
  full_text = res.payload['page_content']
127
+ # Split the text by whitespace
128
+ words = full_text.split()
129
+ # For instance, show only the first 40 words
130
+ preview_word_count = 40
131
+ # Create the short preview and the remainder
132
+ preview_text = " ".join(words[:preview_word_count])
133
+ remainder_text = " ".join(words[preview_word_count:])
134
+ # Always display the preview_text
135
+ st.write(preview_text + ("..." if remainder_text else ""))
136
+ # If there's more content, put it inside an expander
137
+ if remainder_text:
138
  with st.expander("Read more"):
139
+ st.write(remainder_text)
 
140
  # ------- Additional info below the text -------
141
  metadata = res.payload.get('metadata', {})
142
  countries = metadata.get('countries', "[]")
 
173
  st.markdown(f"#### [{project_name}]({url})")
174
  # ------- Display first 4 lines + expander -------
175
  full_text = res.payload['page_content']
176
+ # Split the text by whitespace
177
+ words = full_text.split()
178
+ # For instance, show only the first 40 words
179
+ preview_word_count = 40
180
+ # Create the short preview and the remainder
181
+ preview_text = " ".join(words[:preview_word_count])
182
+ remainder_text = " ".join(words[preview_word_count:])
183
+ # Always display the preview_text
184
+ st.write(preview_text + ("..." if remainder_text else ""))
185
+ # If there's more content, put it inside an expander
186
+ if remainder_text:
187
  with st.expander("Read more"):
188
+ st.write(remainder_text)
 
 
189
  # Additional text below the content
190
  metadata = res.payload.get('metadata', {})
191
  countries = metadata.get('countries', "[]")