agent-zero/webui/components/settings/external/api_keys.html
Alessandro a1c12e9247 Refine settings and remote access UX
Restyle Settings and standard modals around a streamlined left-rail layout, clearer section hierarchy, advanced settings disclosures, and stronger update states.

Add persistent update visibility with quieter once-daily update notifications, plus Remote Link and Space Agent actions in the canvas rail. Refresh the tunnel experience as a normal Remote Link modal with clearer copy, QR/mobile affordances, and safer state handling.
2026-04-27 02:48:23 +02:00

33 lines
996 B
HTML

<html>
<head>
<title>API Keys</title>
</head>
<body>
<div x-data>
<template x-if="$store.settings.settings">
<div>
<div class="section-title">API Keys</div>
<div class="section-description">
Store provider credentials used by Agent Zero. Add multiple keys with commas when you want round-robin rotation.
</div>
<template x-for="provider in $store.settings.apiKeyProviders" :key="provider.value">
<div class="field">
<div class="field-label">
<div class="field-title" x-text="provider.label"></div>
</div>
<div class="field-control">
<input
type="text"
x-model="$store.settings.settings.api_keys[provider.value]"
autocomplete="off"
/>
</div>
</div>
</template>
</div>
</template>
</div>
</body>
</html>