Add icons/images and configure theme
Browse files- chainlit_ui.py +0 -2
- public/avatars/axiom.png +0 -0
- public/axiom.png +0 -0
- public/favicon.png +0 -0
- public/logo_dark.png +0 -0
- public/logo_light.png +0 -0
- public/msg_icons/chatbot.png +0 -0
- public/msg_icons/tools.png +0 -0
- public/msg_icons/usb.png +0 -0
- public/theme.json +68 -0
chainlit_ui.py
CHANGED
@@ -29,8 +29,6 @@ async def on_chat_start():
|
|
29 |
try:
|
30 |
loaded_mcp_servers = load_mcp_servers_from_config()
|
31 |
|
32 |
-
await cl.Message(content=f"Attempting to start {len(loaded_mcp_servers)} MCP server(s)...").send()
|
33 |
-
|
34 |
except FileNotFoundError:
|
35 |
await cl.ErrorMessage(content=f"Fatal Error: MCP configuration file not found at '{settings.mcp_config_path}'. Agent cannot start.").send()
|
36 |
return
|
|
|
29 |
try:
|
30 |
loaded_mcp_servers = load_mcp_servers_from_config()
|
31 |
|
|
|
|
|
32 |
except FileNotFoundError:
|
33 |
await cl.ErrorMessage(content=f"Fatal Error: MCP configuration file not found at '{settings.mcp_config_path}'. Agent cannot start.").send()
|
34 |
return
|
public/avatars/axiom.png
ADDED
![]() |
public/axiom.png
ADDED
![]() |
public/favicon.png
ADDED
![]() |
public/logo_dark.png
ADDED
![]() |
public/logo_light.png
ADDED
![]() |
public/msg_icons/chatbot.png
ADDED
![]() |
public/msg_icons/tools.png
ADDED
![]() |
public/msg_icons/usb.png
ADDED
![]() |
public/theme.json
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"custom_fonts": [],
|
3 |
+
"variables": {
|
4 |
+
"light": {
|
5 |
+
"--font-sans": "'Inter', sans-serif",
|
6 |
+
"--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
|
7 |
+
"--background": "0 0% 100%",
|
8 |
+
"--foreground": "0 0% 5%",
|
9 |
+
"--card": "0 0% 100%",
|
10 |
+
"--card-foreground": "0 0% 5%",
|
11 |
+
"--popover": "0 0% 100%",
|
12 |
+
"--popover-foreground": "0 0% 5%",
|
13 |
+
"--primary": "215 93% 36%",
|
14 |
+
"--primary-foreground": "0 0% 100%",
|
15 |
+
"--secondary": "0 0% 85%",
|
16 |
+
"--secondary-foreground": "222.2 47.4% 11.2%",
|
17 |
+
"--muted": "0 0% 85%",
|
18 |
+
"--muted-foreground": "0 0% 36%",
|
19 |
+
"--accent": "0 0% 93%",
|
20 |
+
"--accent-foreground": "222.2 47.4% 11.2%",
|
21 |
+
"--destructive": "0 84.2% 60.2%",
|
22 |
+
"--destructive-foreground": "210 40% 98%",
|
23 |
+
"--border": "0 0% 85%",
|
24 |
+
"--input": "0 0% 85%",
|
25 |
+
"--ring": "215 93% 36%",
|
26 |
+
"--radius": "0.75rem",
|
27 |
+
"--sidebar-background": "0 0% 98%",
|
28 |
+
"--sidebar-foreground": "240 5.3% 26.1%",
|
29 |
+
"--sidebar-primary": "240 5.9% 10%",
|
30 |
+
"--sidebar-primary-foreground": "0 0% 98%",
|
31 |
+
"--sidebar-accent": "240 4.8% 95.9%",
|
32 |
+
"--sidebar-accent-foreground": "240 5.9% 10%",
|
33 |
+
"--sidebar-border": "220 13% 91%",
|
34 |
+
"--sidebar-ring": "217.2 91.2% 59.8%"
|
35 |
+
},
|
36 |
+
"dark": {
|
37 |
+
"--font-sans": "'Inter', sans-serif",
|
38 |
+
"--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
|
39 |
+
"--background": "0 0% 8%",
|
40 |
+
"--foreground": "0 0% 93%",
|
41 |
+
"--card": "0 0% 16%",
|
42 |
+
"--card-foreground": "210 40% 98%",
|
43 |
+
"--popover": "0 0% 16%",
|
44 |
+
"--popover-foreground": "210 40% 98%",
|
45 |
+
"--primary": "212 100% 45%",
|
46 |
+
"--primary-foreground": "0 0% 100%",
|
47 |
+
"--secondary": "0 1% 19%",
|
48 |
+
"--secondary-foreground": "210 100% 98%",
|
49 |
+
"--muted": "0 1% 26%",
|
50 |
+
"--muted-foreground": "0 0% 71%",
|
51 |
+
"--accent": "0 0% 20%",
|
52 |
+
"--accent-foreground": "210 40% 98%",
|
53 |
+
"--destructive": "0 62.8% 30.6%",
|
54 |
+
"--destructive-foreground": "210 40% 98%",
|
55 |
+
"--border": "0 1% 26%",
|
56 |
+
"--input": "0 1% 26%",
|
57 |
+
"--ring": "213 100% 37%",
|
58 |
+
"--sidebar-background": "0 0% 9%",
|
59 |
+
"--sidebar-foreground": "240 4.8% 95.9%",
|
60 |
+
"--sidebar-primary": "224.3 76.3% 48%",
|
61 |
+
"--sidebar-primary-foreground": "0 0% 100%",
|
62 |
+
"--sidebar-accent": "0 0% 13%",
|
63 |
+
"--sidebar-accent-foreground": "240 4.8% 95.9%",
|
64 |
+
"--sidebar-border": "240 3.7% 15.9%",
|
65 |
+
"--sidebar-ring": "217.2 91.2% 59.8%"
|
66 |
+
}
|
67 |
+
}
|
68 |
+
}
|