mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-05 07:10:44 +00:00
fix: missing pluginListStore import
This commit is contained in:
parent
6b57044026
commit
789a87c890
2 changed files with 7 additions and 6 deletions
|
|
@ -7,6 +7,7 @@
|
|||
<body>
|
||||
<script type="module">
|
||||
import { store } from "/plugins/_model_config/webui/model-config-store.js";
|
||||
import { store as pluginListStore } from "/components/plugins/list/pluginListStore.js";
|
||||
</script>
|
||||
|
||||
<div x-data>
|
||||
|
|
@ -48,11 +49,14 @@
|
|||
</div>
|
||||
|
||||
<div style="display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;">
|
||||
<button class="btn btn-field" @click="$store.pluginListStore.openPluginConfig('_model_config')">
|
||||
<button class="btn btn-field" @click="$store.pluginListStore.openPluginConfig({ name: '_model_config', has_config_screen: true })">
|
||||
Configure Models
|
||||
</button>
|
||||
<button class="btn btn-field" @click="openModal('/plugins/_model_config/webui/main.html')">
|
||||
Configure Presets
|
||||
</button>
|
||||
<button class="btn btn-field" @click="openModal('/plugins/_model_config/webui/api-keys.html')">
|
||||
Manage API Keys
|
||||
Configure API Keys
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue