5769c1cd22
- Auto-Registration-Bug behoben (register_project/get_project_id/resolve_project Trennung) - 25 Tests gruen (Pytest) - block_compactor-Tool refactored (Option B: Soft-Check statt Hard-Block) - 4 Restbaustellen gefixt - DB-Schema: plugin_settings-Tabelle hinzugefuegt - 3 Schattenprojekte aus DB geloescht - Plan v3 + Refactor-Plan + Worklog dokumentiert
62 lines
2.2 KiB
HTML
62 lines
2.2 KiB
HTML
<html>
|
|
<head>
|
|
<title>A0 Software Orchestrator Settings</title>
|
|
<script type="module" src="/plugins/a0_software_orchestrator/webui/orchestrator-config-store.js"></script>
|
|
</head>
|
|
<body>
|
|
<div x-data>
|
|
<template x-if="$store.a0SoftwareOrchestratorStore">
|
|
<div x-init="$store.a0SoftwareOrchestratorStore.onOpen()" x-destroy="$store.a0SoftwareOrchestratorStore.cleanup()">
|
|
<h3>A0 Software Orchestrator</h3>
|
|
<p>Core-first software project orchestration.</p>
|
|
|
|
<!-- Model Routing -->
|
|
<fieldset>
|
|
<legend>Model Routing</legend>
|
|
<div class="form-group">
|
|
<label>Orchestrator Model:</label>
|
|
<select x-model="config.orchestrator_preset">
|
|
<option value="strong-reasoning">Strong Reasoning</option>
|
|
<option value="cheap-fast">Cheap Fast</option>
|
|
<option value="best-coding">Best Coding</option>
|
|
<option value="balanced">Balanced</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Implementation Engineer Model:</label>
|
|
<select x-model="config.implementation_preset">
|
|
<option value="best-coding">Best Coding</option>
|
|
<option value="balanced-coding">Balanced Coding</option>
|
|
<option value="strong-reasoning">Strong Reasoning</option>
|
|
<option value="cheap-fast">Cheap Fast</option>
|
|
</select>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<!-- External Tools Health -->
|
|
<fieldset>
|
|
<legend>External Tools</legend>
|
|
<div x-text="'Status: ' + (config.tool_status || 'not checked')">
|
|
</div>
|
|
<button @click="$store.a0SoftwareOrchestratorStore.loadStatus()">
|
|
Check Tools
|
|
</button>
|
|
</fieldset>
|
|
|
|
<!-- Autonomy Level -->
|
|
<fieldset>
|
|
<legend>Autonomy</legend>
|
|
<select x-model="config.autonomy_level">
|
|
<option value="low">Low (read-only)</option>
|
|
<option value="balanced">Balanced (commit allowed)</option>
|
|
<option value="high">High (push feature branches)</option>
|
|
</select>
|
|
</fieldset>
|
|
|
|
<p class="version">Version 0.1.0</p>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</body>
|
|
</html>
|