feat: add support for Graph Tools in AIAgent model and related services

This commit is contained in:
mlogclub
2026-04-14 15:10:50 +08:00
parent 8d560bb6bd
commit aa7f94e08f
9 changed files with 213 additions and 19 deletions
+2
View File
@@ -220,6 +220,7 @@ export type AIAgent = {
description: string
arguments?: Record<string, string>
}[]
graphTools: string[]
sortNo: number
remark: string
createdAt: string
@@ -249,6 +250,7 @@ export type CreateAIAgentPayload = {
description: string
arguments?: Record<string, string>
}[]
graphTools: string[]
remark: string
}