We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0527cf4 + 643f49e commit 5f1f6beCopy full SHA for 5f1f6be
web/src/stores/agent.js
@@ -160,6 +160,7 @@ export const useAgentStore = defineStore('agent', () => {
160
try {
161
const response = await agentApi.getAgentDetail(agentId)
162
agentDetails.value[agentId] = response
163
+ // availableTools.value[agentId] = response.available_tools || []
164
return response
165
} catch (err) {
166
console.error(`Failed to fetch agent detail for ${agentId}:`, err)
@@ -285,7 +286,7 @@ export const useAgentStore = defineStore('agent', () => {
285
286
Object.assign(agentConfig.value, updates)
287
}
288
-
289
+
290
/**
291
* 清除错误状态
292
*/
0 commit comments