+
+ Admin Panel
+Policy, tools, and local secrets in one place.
+
+
+
+ Terminal mode
+ {settings.terminal_mode}
+
+
+ Search provider
+ {settings.search_provider}
+
+
+ Ollama
+ {settings.ollama_base_url}
+
+
+
+
+ Ollama status
+ {ollamaStatus?.reachable ? "Reachable" : "Offline"}
+
+ {ollamaStatus?.message || "Checking..."}
+
+ Telegram status
+ {telegramStatus?.configured ? "Configured" : "Missing token"}
+
+ {telegramStatus?.message || "Checking..."}
+
+
+
+
+
+
+
+
+
+
+ Memory
+ +
+ {memory.length === 0 ? No memory yet. : null}
+ {memory.map((item, index) => (
+
+
+ {item.kind}
+
+ ))}
+ {item.content}
+
+
+
+
+ Recent Logs
+
+ {(dashboard?.recent_logs || []).length === 0 ? (
+ No recent logs.
+ ) : null}
+ {(dashboard?.recent_logs || []).map((item, index) => (
+
+
+ {item}
+
+ ))}
+