main
html 33 lines 1.06 KB
Raw
1 <html>
2 <head>
3 <title>A0 A2A Server</title>
4 </head>
5
6 <body>
7 <div x-data="{ get settings() { return $store.settings.settings } }">
8 <template x-if="settings">
9 <div>
10 <div class="section-title">A0 A2A Server</div>
11 <div class="section-description">
12 Expose this Agent Zero instance to other agents over A2A. See <a href="javascript:openModal('settings/a2a/a2a-connection.html')">connection example</a>.
13 </div>
14
15 <div class="field">
16 <div class="field-label">
17 <div class="field-title">Enable A2A server</div>
18 <div class="field-description">
19 Let trusted agents connect to A0 through the A2A protocol.
20 </div>
21 </div>
22 <div class="field-control">
23 <label class="toggle">
24 <input type="checkbox" x-model="settings.a2a_server_enabled" />
25 <span class="toggler"></span>
26 </label>
27 </div>
28 </div>
29 </div>
30 </template>
31 </div>
32 </body>
33 </html>