mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-17 12:31:20 +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.
40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<html>
|
|
<head>
|
|
<title>LiteLLM</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div x-data="{ get settings() { return $store.settings.settings } }">
|
|
<template x-if="settings">
|
|
<div>
|
|
<div class="section-title">LiteLLM Global Settings</div>
|
|
<div class="section-description">
|
|
Provider-wide LiteLLM overrides. Leave this closed unless every model call needs the same extra parameter.
|
|
</div>
|
|
|
|
<div class="settings-advanced-section" x-data="{ advOpen: false }">
|
|
<button type="button" class="settings-advanced-toggle" @click="advOpen = !advOpen">
|
|
<span class="material-symbols-outlined settings-advanced-toggle-icon"
|
|
:style="advOpen ? 'transform:rotate(90deg)' : ''">chevron_right</span>
|
|
<span>Advanced Settings</span>
|
|
</button>
|
|
|
|
<div class="settings-advanced-body" x-show="advOpen" x-transition.opacity>
|
|
<div class="field field-full">
|
|
<div class="field-label">
|
|
<div class="field-title">Global LiteLLM parameters</div>
|
|
<div class="field-description">
|
|
One <code>KEY=VALUE</code> pair per line, for example <code>stream_timeout=30</code>. These values apply to all LiteLLM calls unless a model overrides them.
|
|
</div>
|
|
</div>
|
|
<div class="field-control">
|
|
<textarea style="height: 12em" x-model="settings.litellm_global_kwargs"></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</body>
|
|
</html>
|