rbughao commited on
Commit
e09c163
·
verified ·
1 Parent(s): 70a5298

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -5,7 +5,9 @@ import pandas as pd
5
  from datetime import datetime
6
 
7
  DEFAULT_SYSTEM_PROMPT = """
8
- This is Banyan Group's Sitespeed Checker, the tool shows how fast sites are based on seconds.
 
 
9
  """
10
 
11
  results = []
@@ -81,8 +83,8 @@ def runchecks(message,history):
81
  else:
82
  return(generate_transparency_links(message,history))
83
 
84
- Conversing = gr.ChatInterface(runchecks, chatbot=gr.Chatbot(height=600,label = "Typing 'Run Now' will trigger the speedcheck"), theme=gr.themes.Monochrome(),
85
- title = 'BT ECommerce Sitespeed Checker', description = DEFAULT_SYSTEM_PROMPT, css='footer {visibility: hidden}').launch()
86
  #"Algorithm for this site is based on Readability Wiki - https://en.wikipedia.org/wiki/Readability "
87
 
88
 
 
5
  from datetime import datetime
6
 
7
  DEFAULT_SYSTEM_PROMPT = """
8
+ List of Tools:
9
+ - Sitespeed Checker - Check how fast monitored sites are in seconds. To use, just type ''run now'.
10
+ - Ads Checker - Shows the links of possible paid ads. To use, type the domain without 'https://www'.
11
  """
12
 
13
  results = []
 
83
  else:
84
  return(generate_transparency_links(message,history))
85
 
86
+ Conversing = gr.ChatInterface(runchecks, chatbot=gr.Chatbot(height=600,label = "Output"), theme=gr.themes.Monochrome(),
87
+ title = 'BG ECommerce Utilities', description = DEFAULT_SYSTEM_PROMPT, css='footer {visibility: hidden}').launch()
88
  #"Algorithm for this site is based on Readability Wiki - https://en.wikipedia.org/wiki/Readability "
89
 
90