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
925 B
HTML
33 lines
925 B
HTML
<html>
|
|
<head>
|
|
<title>External API</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div x-data>
|
|
<div>
|
|
<div class="section-title">External API</div>
|
|
<div class="section-description">
|
|
Let external applications send messages and attachments to Agent Zero through authenticated API endpoints.
|
|
</div>
|
|
|
|
<div class="field">
|
|
<div class="field-label">
|
|
<div class="field-title">API Examples</div>
|
|
<div class="field-description">
|
|
Open ready-to-adapt request examples for the external API.
|
|
</div>
|
|
</div>
|
|
<div class="field-control">
|
|
<button
|
|
class="btn btn-field"
|
|
@click="$store.settings.handleFieldButton({ id: 'external_api_examples' })"
|
|
>
|
|
Show API Examples
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|