| 1 | <html> |
| 2 | <head> |
| 3 | <title>External Services</title> |
| 4 | </head> |
| 5 | |
| 6 | <body> |
| 7 | <div x-data> |
| 8 | <template x-if="$store.settings"> |
| 9 | <div> |
| 10 | <nav> |
| 11 | <ul> |
| 12 | <li> |
| 13 | <a href="#section-api-keys"> |
| 14 | <img src="/public/api_keys.svg" alt="API Keys" /> |
| 15 | <span>API Keys</span> |
| 16 | </a> |
| 17 | </li> |
| 18 | <li> |
| 19 | <a href="#section-litellm"> |
| 20 | <img src="/public/litellm.svg" alt="LiteLLM Global Settings" /> |
| 21 | <span>LiteLLM Global Settings</span> |
| 22 | </a> |
| 23 | </li> |
| 24 | <li> |
| 25 | <a href="#section-secrets"> |
| 26 | <img src="/public/secrets.svg" alt="Secrets Management" /> |
| 27 | <span>Secrets Management</span> |
| 28 | </a> |
| 29 | </li> |
| 30 | <li> |
| 31 | <a href="#section-auth"> |
| 32 | <img src="/public/auth.svg" alt="Authentication" /> |
| 33 | <span>Authentication</span> |
| 34 | </a> |
| 35 | </li> |
| 36 | <li> |
| 37 | <a href="#section-external-api"> |
| 38 | <img src="/public/external_api.svg" alt="External API" /> |
| 39 | <span>External API</span> |
| 40 | </a> |
| 41 | </li> |
| 42 | <li> |
| 43 | <a href="#section-tunnel"> |
| 44 | <img src="/public/tunnel.svg" alt="Remote Control" /> |
| 45 | <span>Remote Control</span> |
| 46 | </a> |
| 47 | </li> |
| 48 | <li> |
| 49 | <a href="#section-external-plugins"> |
| 50 | <x-icon aria-hidden="true" name="extension"></x-icon> |
| 51 | <span>Plugins</span> |
| 52 | </a> |
| 53 | </li> |
| 54 | </ul> |
| 55 | </nav> |
| 56 | |
| 57 | <div id="section-api-keys" class="section"> |
| 58 | <x-component path="settings/external/api_keys.html"></x-component> |
| 59 | </div> |
| 60 | <div id="section-litellm" class="section"> |
| 61 | <x-component path="settings/external/litellm.html"></x-component> |
| 62 | </div> |
| 63 | <div id="section-secrets" class="section"> |
| 64 | <x-component path="settings/external/secrets.html"></x-component> |
| 65 | </div> |
| 66 | <div id="section-auth" class="section"> |
| 67 | <x-component path="settings/external/auth.html"></x-component> |
| 68 | </div> |
| 69 | <div id="section-external-api" class="section"> |
| 70 | <x-component path="settings/external/external_api.html"></x-component> |
| 71 | </div> |
| 72 | <!-- Tunnel section content --> |
| 73 | <div id="section-tunnel" class="section"> |
| 74 | <x-component path="settings/tunnel/tunnel-section.html"></x-component> |
| 75 | </div> |
| 76 | <div id="section-external-plugins" class="section"> |
| 77 | <x-component path="settings/plugins/plugins-subsection.html" data-tab="external"></x-component> |
| 78 | </div> |
| 79 | </div> |
| 80 | </template> |
| 81 | </div> |
| 82 | </body> |
| 83 | </html> |