MathWizard1729 commited on
Commit
5b2c133
Β·
verified Β·
1 Parent(s): d807663

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -246,7 +246,8 @@ def summarize_with_bedrock(title: str, content: str) -> str:
246
  # ───────────────────────────────────────────────────────────────────────────────
247
  # When button is clicked
248
  if btn and query:
249
- st.info(f"πŸ” Searching for news on <b>{query}</b>...", unsafe_allow_html=True)
 
250
 
251
  # Fetch articles
252
  newsapi_articles = get_newsapi_articles(query)
 
246
  # ───────────────────────────────────────────────────────────────────────────────
247
  # When button is clicked
248
  if btn and query:
249
+ # Use Markdown-style bold instead of raw HTML in st.info
250
+ st.info(f"πŸ” Searching for news on **{query}**...")
251
 
252
  # Fetch articles
253
  newsapi_articles = get_newsapi_articles(query)