mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-02 21:50:34 +00:00
refactor - plugin names and builtin plugins
This commit is contained in:
parent
f0946138be
commit
6515626242
133 changed files with 1327 additions and 743 deletions
32
plugins/_error_retry/webui/config.html
Normal file
32
plugins/_error_retry/webui/config.html
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Error retry</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div x-data>
|
||||
<template x-if="config">
|
||||
<div>
|
||||
<div class="section-title">Error retry</div>
|
||||
<div class="section-description">
|
||||
Settings for retrying failed operations.
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<div class="field-label">
|
||||
<div class="field-title">Retries</div>
|
||||
<div class="field-description">
|
||||
Number of retries after an error occurs.
|
||||
</div>
|
||||
</div>
|
||||
<div class="field-control">
|
||||
<input type="number" min="0"
|
||||
x-model.number="config.retries" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue