cyberandy commited on
Commit
b9e310b
Β·
1 Parent(s): c7e9131

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -7
app.py CHANGED
@@ -48,15 +48,11 @@ if st.button("Analyze"):
48
 
49
  # Display traffic light system
50
  if M == 2 and T == 2:
51
- st.markdown("<h1 style='text-align: center; color: green;'>🟒 Content is highly relevant and trustworthy</h1>", unsafe_allow_html=True)
52
  elif M == 1 or T == 1:
53
- st.markdown("<h1 style='text-align: center; color: orange;'>🟑 Content is partly relevant/helpful</h1>", unsafe_allow_html=True)
54
  else:
55
- st.markdown("<h1 style='text-align: center; color: red;'>πŸ”΄ Content is not relevant</h1>", unsafe_allow_html=True)
56
-
57
- # Display JSON response below the traffic light
58
- st.subheader("JSON Response:")
59
- st.json(response)
60
 
61
  except (KeyError, IndexError, ValueError) as e:
62
  st.error(f"Error extracting analysis results: {str(e)}")
 
48
 
49
  # Display traffic light system
50
  if M == 2 and T == 2:
51
+ st.markdown("<h3 style='text-align: center; color: green;'>🟒 Content is highly relevant and trustworthy</h3>", unsafe_allow_html=True)
52
  elif M == 1 or T == 1:
53
+ st.markdown("<h3 style='text-align: center; color: orange;'>🟑 Content is partly relevant/helpful</h3>", unsafe_allow_html=True)
54
  else:
55
+ st.markdown("<h3 style='text-align: center; color: red;'>πŸ”΄ Content is not relevant</h3>", unsafe_allow_html=True)
 
 
 
 
56
 
57
  except (KeyError, IndexError, ValueError) as e:
58
  st.error(f"Error extracting analysis results: {str(e)}")