mirror of
https://github.com/whit3rabbit/anyllm-proxy.git
synced 2026-09-21 16:00:49 +00:00
Admin UI UX fixes plus the route-dispatch feature set: - Providers: selecting a provider shows the full key/options form immediately instead of hiding it behind a "+ Add key" button; "Cancel" becomes "Reset". - Routes: enabled routes show a ready-to-run curl snippet (endpoint URL from the new proxy_port on /admin/api/status, route name as the model) with a copy button. - Settings: live proxy status badge (running/unreachable) backed by a proxy_running TCP liveness check on /admin/api/status, plus a per-save "applied live" toast. - Backend: plumb proxy listen_port into SharedState; expose proxy_port + proxy_running. - Also includes the RouteRouter dispatch layer, per-route option overrides, local-LLM backend support, favorites, and model discovery (see CHANGELOG [Unreleased]). Ignore .gate/ security-scanner scratch artifacts. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
14 lines
1.3 KiB
HTML
14 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>AnyLLM Web Proxy</title>
|
|
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32'%3E%3Cdefs%3E%3ClinearGradient id='grad-left' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%238A2BE2'/%3E%3Cstop offset='100%25' stop-color='%234A00E0'/%3E%3C/linearGradient%3E%3ClinearGradient id='grad-right' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%2300D2FF'/%3E%3Cstop offset='100%25' stop-color='%2300F0FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='32' height='32' rx='7' fill='%230F111A'/%3E%3Cpath d='M7 10 L15 16 L7 22' fill='none' stroke='url(%23grad-left)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M25 10 L17 16 L25 22' fill='none' stroke='url(%23grad-right)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='16' cy='16' r='2.5' fill='%23FFFFFF'/%3E%3C/svg%3E" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" nonce="__CSP_NONCE__" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|