mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-17 04:01:13 +00:00
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.
33 lines
996 B
HTML
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>
|