2gauravc commited on
Commit
903f187
1 Parent(s): ccdb116

rel plan tab

Browse files
Files changed (1) hide show
  1. app.py +13 -3
app.py CHANGED
@@ -25,7 +25,7 @@ def perform_search(pname, keywords, num_results):
25
  rep_txt= generate_kyc_output(query, search_links, resp, start_time)
26
  return (rep_txt)
27
 
28
- main_tab, help_tab = st.tabs(["Run the Bot", "Help"])
29
 
30
  with main_tab:
31
  # Streamlit app
@@ -42,7 +42,7 @@ with main_tab:
42
  st.sidebar.markdown("## Model")
43
  st.sidebar.markdown("GPT v3.5")
44
  st.sidebar.markdown("## App")
45
- st.sidebar.markdown("v0.3")
46
 
47
  col1, col2 = st.columns(2)
48
  with col1:
@@ -58,7 +58,7 @@ with main_tab:
58
  # Search button
59
  if st.button("Search"):
60
  names = names_txt.split(",")
61
- print(len(names))
62
  metrics_ent = (adv_nw != "Dont Know") and (man_tt > 0) and (bot_tt > 0)
63
  # Perform the search and display the results
64
  if names and metrics_ent:
@@ -92,3 +92,13 @@ with help_tab:
92
 
93
  st.markdown("Q. Can I search without the other search words?")
94
  st.markdown("A. Just enter a blank space in the text space and search")
 
 
 
 
 
 
 
 
 
 
 
25
  rep_txt= generate_kyc_output(query, search_links, resp, start_time)
26
  return (rep_txt)
27
 
28
+ main_tab, help_tab, rel_tab = st.tabs(["Run the Bot", "FAQ", "Release Plan"])
29
 
30
  with main_tab:
31
  # Streamlit app
 
42
  st.sidebar.markdown("## Model")
43
  st.sidebar.markdown("GPT v3.5")
44
  st.sidebar.markdown("## App")
45
+ st.sidebar.markdown("v0.4")
46
 
47
  col1, col2 = st.columns(2)
48
  with col1:
 
58
  # Search button
59
  if st.button("Search"):
60
  names = names_txt.split(",")
61
+ #print(len(names))
62
  metrics_ent = (adv_nw != "Dont Know") and (man_tt > 0) and (bot_tt > 0)
63
  # Perform the search and display the results
64
  if names and metrics_ent:
 
92
 
93
  st.markdown("Q. Can I search without the other search words?")
94
  st.markdown("A. Just enter a blank space in the text space and search")
95
+
96
+ with rel_tab:
97
+ st.markdown(f"""
98
+ | NO. | Issue / Enhancement | Rel | Status |
99
+ |-----|--------------------------------------------------------------------------------------------------------------------------------------------|-----|-----------|
100
+ | 1 | Capture productivity and adverse news metrics from the user | 0.4 | Completed |
101
+ | 2 | Save productivity and adverse news metrics in a DB | 0.4 | TBD |
102
+ | 3 | Convert bot output to structured JSON - Count of adverse news - Summary of all adverse news - Identification of links with adverse news | 0.6 | TBD |
103
+ | 4 | Offer alternate solution path with web text scraping and | 0.6 | TBD |
104
+ | 5 | Create a page on metrics report | 0.5 | TBD |""")