Spaces:
Runtime error
Runtime error
Commit
Β·
6323dd3
1
Parent(s):
5e5664c
Update app.py
Browse files
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"
|
109 |
|
110 |
#display message for themes feature
|
111 |
-
theme_addon_msg = """<center>π
|
112 |
-
<br>π
|
113 |
"""
|
114 |
|
115 |
#Using info to add additional information about System message in GPT4
|
116 |
-
system_msg_info = """
|
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">π₯
|
127 |
gr.HTML(theme_addon_msg)
|
128 |
-
gr.HTML('''<center><a href="https://huggingface.co/spaces/
|
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='
|
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():
|