Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -41,24 +41,24 @@ iface = gr.Interface(
|
|
41 |
fn=chat,
|
42 |
inputs=[
|
43 |
gr.Textbox(
|
44 |
-
label="
|
45 |
lines=4,
|
46 |
placeholder="Ask your question here...",
|
47 |
elem_id="chat-input"
|
48 |
),
|
49 |
gr.CheckboxGroup(
|
50 |
choices=list(agent_map.keys()),
|
51 |
-
label="
|
52 |
value=list(agent_map.keys())
|
53 |
)
|
54 |
],
|
55 |
-
outputs=gr.JSON(label="
|
56 |
-
title="
|
57 |
description="Ask multiple AI agents across roles like Philosopher, Hacker, Lawyer, etc. Powered by Groq.",
|
58 |
theme=gr.themes.Soft(
|
59 |
primary_hue="blue",
|
60 |
-
secondary_hue="
|
61 |
-
font=[gr.themes.GoogleFont("
|
62 |
radius_size=gr.themes.sizes.radius_md,
|
63 |
spacing_size=gr.themes.sizes.spacing_md
|
64 |
),
|
@@ -73,6 +73,7 @@ iface = gr.Interface(
|
|
73 |
body {
|
74 |
background-color: #111827;
|
75 |
color: white;
|
|
|
76 |
}
|
77 |
.gr-box {
|
78 |
border: none;
|
|
|
41 |
fn=chat,
|
42 |
inputs=[
|
43 |
gr.Textbox(
|
44 |
+
label="Ask Anything",
|
45 |
lines=4,
|
46 |
placeholder="Ask your question here...",
|
47 |
elem_id="chat-input"
|
48 |
),
|
49 |
gr.CheckboxGroup(
|
50 |
choices=list(agent_map.keys()),
|
51 |
+
label="Choose Which Agents to Ask",
|
52 |
value=list(agent_map.keys())
|
53 |
)
|
54 |
],
|
55 |
+
outputs=gr.JSON(label="Agent Responses"),
|
56 |
+
title="Multi-Agent Chatroom",
|
57 |
description="Ask multiple AI agents across roles like Philosopher, Hacker, Lawyer, etc. Powered by Groq.",
|
58 |
theme=gr.themes.Soft(
|
59 |
primary_hue="blue",
|
60 |
+
secondary_hue="gray",
|
61 |
+
font=[gr.themes.GoogleFont("Inter")],
|
62 |
radius_size=gr.themes.sizes.radius_md,
|
63 |
spacing_size=gr.themes.sizes.spacing_md
|
64 |
),
|
|
|
73 |
body {
|
74 |
background-color: #111827;
|
75 |
color: white;
|
76 |
+
font-family: 'Inter', sans-serif;
|
77 |
}
|
78 |
.gr-box {
|
79 |
border: none;
|