| 1 | <html> |
| 2 | <head> |
| 3 | <title>Agent Settings</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-agent-config"> |
| 14 | <img src="/public/agent.svg" alt="Agent Config" /> |
| 15 | <span>Agent Config</span> |
| 16 | </a> |
| 17 | </li> |
| 18 | <li> |
| 19 | <a href="#section-models-summary"> |
| 20 | <img src="/public/chat_model.svg" alt="Models" /> |
| 21 | <span>Models</span> |
| 22 | </a> |
| 23 | </li> |
| 24 | <li> |
| 25 | <a href="#section-voice"> |
| 26 | <img src="/public/speech.svg" alt="Voice" /> |
| 27 | <span>Voice</span> |
| 28 | </a> |
| 29 | </li> |
| 30 | <li> |
| 31 | <a href="#section-workdir"> |
| 32 | <img src="/public/folder.svg" alt="Workdir" /> |
| 33 | <span>Workdir</span> |
| 34 | </a> |
| 35 | </li> |
| 36 | <li> |
| 37 | <a href="#section-locale"> |
| 38 | <x-icon aria-hidden="true" name="language"></x-icon> |
| 39 | <span>Locale</span> |
| 40 | </a> |
| 41 | </li> |
| 42 | <li> |
| 43 | <a href="#section-interface"> |
| 44 | <x-icon aria-hidden="true" name="dashboard_customize"></x-icon> |
| 45 | <span>Interface</span> |
| 46 | </a> |
| 47 | </li> |
| 48 | <li> |
| 49 | <a href="#section-agent-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-agent-config" class="section"> |
| 58 | <x-component path="settings/agent/agent.html"></x-component> |
| 59 | </div> |
| 60 | |
| 61 | <div id="section-models-summary" class="section"> |
| 62 | <x-component path="/plugins/_model_config/webui/models-summary.html"></x-component> |
| 63 | </div> |
| 64 | |
| 65 | <div id="section-voice" class="section"> |
| 66 | <x-component path="settings/agent/voice.html"></x-component> |
| 67 | </div> |
| 68 | |
| 69 | <div id="section-workdir" class="section"> |
| 70 | <x-component path="settings/agent/workdir.html"></x-component> |
| 71 | </div> |
| 72 | |
| 73 | <div id="section-locale" class="section"> |
| 74 | <x-component path="settings/agent/locale.html"></x-component> |
| 75 | </div> |
| 76 | |
| 77 | <div id="section-interface" class="section"> |
| 78 | <x-component path="settings/agent/interface.html"></x-component> |
| 79 | </div> |
| 80 | |
| 81 | <!-- Plugin settings subsection: shows plugins tagged with "agent" --> |
| 82 | <div id="section-agent-plugins" class="section"> |
| 83 | <x-component path="settings/plugins/plugins-subsection.html" data-tab="agent"></x-component> |
| 84 | </div> |
| 85 | |
| 86 | </div> |
| 87 | </template> |
| 88 | </div> |
| 89 | </body> |
| 90 | </html> |