alex-mindspace commited on
Commit
6323dd3
Β·
1 Parent(s): 5e5664c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -105,16 +105,15 @@ def set_visible_false():
105
  def set_visible_true():
106
  return gr.update(visible=True)
107
 
108
- title = """<h1 align="center">πŸ”₯GPT4 with ChatCompletions API +πŸš€Gradio-Streaming</h1>"""
109
 
110
  #display message for themes feature
111
- theme_addon_msg = """<center>🌟 Discover Gradio Themes with this Demo, featuring v3.22.0! Gradio v3.23.0 also enables seamless Theme sharing. You can develop or modify a theme, and send it to the hub using simple <code>theme.push_to_hub()</code>.
112
- <br>πŸ†Participate in Gradio's Theme Building Hackathon to exhibit your creative flair and win fabulous rewards! Join here - <a href="https://huggingface.co/Gradio-Themes" target="_blank">Gradio-Themes-Party🎨</a> πŸ†</center>
113
  """
114
 
115
  #Using info to add additional information about System message in GPT4
116
- system_msg_info = """A conversation could begin with a system message to gently instruct the assistant.
117
- System message helps set the behavior of the AI Assistant. For example, the assistant could be instructed with 'You are a helpful assistant.'"""
118
 
119
  #Modifying existing Gradio Theme
120
  theme = gr.themes.Soft(primary_hue="zinc", secondary_hue="green", neutral_hue="green",
@@ -123,16 +122,16 @@ theme = gr.themes.Soft(primary_hue="zinc", secondary_hue="green", neutral_hue="g
123
  with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;} #chatbot {height: 520px; overflow: auto;}""",
124
  theme=theme) as demo:
125
  gr.HTML(title)
126
- gr.HTML("""<h3 align="center">πŸ”₯This Huggingface Gradio Demo provides you full access to GPT4 API (4096 token limit). πŸŽ‰πŸ₯³πŸŽ‰You don't need any OPENAI API keyπŸ™Œ</h1>""")
127
  gr.HTML(theme_addon_msg)
128
- gr.HTML('''<center><a href="https://huggingface.co/spaces/ysharma/ChatGPT4?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a>Duplicate the Space and run securely with your OpenAI API Key</center>''')
129
 
130
  with gr.Column(elem_id = "col_container"):
131
  #GPT4 API Key is provided by Huggingface
132
  with gr.Accordion(label="System message:", open=False):
133
  system_msg = gr.Textbox(label="Instruct the AI Assistant to set its beaviour", info = system_msg_info, value="")
134
  accordion_msg = gr.HTML(value="🚧 To set System message you will have to refresh the app", visible=False)
135
- chatbot = gr.Chatbot(label='GPT4', elem_id="chatbot")
136
  inputs = gr.Textbox(placeholder= "Hi there!", label= "Type an input and press Enter")
137
  state = gr.State([])
138
  with gr.Row():
 
105
  def set_visible_true():
106
  return gr.update(visible=True)
107
 
108
+ title = """<h1 align="center">πŸ” Swarm Intelligence Agents πŸœπŸ”Ž</h1>"""
109
 
110
  #display message for themes feature
111
+ theme_addon_msg = """<center>🌟 he swarm of agents combines a huge number of parallel agents divided into roles, including examiners, QA, evaluators, managers, analytics, and googlers.
112
+ <br>πŸ†The agents use smart task decomposition and optimization processes to ensure accurate and efficient research on any topic.🎨</center>
113
  """
114
 
115
  #Using info to add additional information about System message in GPT4
116
+ system_msg_info = """Swarm pre-configured for best practices using whitelists of top internet resources'"""
 
117
 
118
  #Modifying existing Gradio Theme
119
  theme = gr.themes.Soft(primary_hue="zinc", secondary_hue="green", neutral_hue="green",
 
122
  with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;} #chatbot {height: 520px; overflow: auto;}""",
123
  theme=theme) as demo:
124
  gr.HTML(title)
125
+ gr.HTML("""<h3 align="center">πŸ”₯Using a swarm of automated agents, we can perform fast and accurate research on any topic. πŸš€πŸ. πŸŽ‰πŸ₯³πŸŽ‰You don't need to spent tons of hours during reseachyπŸ™Œ</h1>""")
126
  gr.HTML(theme_addon_msg)
127
+ gr.HTML('''<center><a href="https://huggingface.co/spaces/swarm-agents/swarm-agents?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a>Duplicate the Space and run securely with your OpenAI API Key</center>''')
128
 
129
  with gr.Column(elem_id = "col_container"):
130
  #GPT4 API Key is provided by Huggingface
131
  with gr.Accordion(label="System message:", open=False):
132
  system_msg = gr.Textbox(label="Instruct the AI Assistant to set its beaviour", info = system_msg_info, value="")
133
  accordion_msg = gr.HTML(value="🚧 To set System message you will have to refresh the app", visible=False)
134
+ chatbot = gr.Chatbot(label='Swarm Intelligence Search', elem_id="chatbot")
135
  inputs = gr.Textbox(placeholder= "Hi there!", label= "Type an input and press Enter")
136
  state = gr.State([])
137
  with gr.Row():