refactor: remove graph tools references and related logic from AIAgent and workflows

This commit is contained in:
mlogclub
2026-06-26 18:56:09 +08:00
parent 015b57bfe7
commit d4ff0980c4
14 changed files with 48 additions and 199 deletions
-2
View File
@@ -239,7 +239,6 @@ export type AIAgent = {
description: string
arguments?: Record<string, string>
}[]
graphTools: string[]
workflowVersionId: number
workflowPublished: boolean
workflowState: string
@@ -273,7 +272,6 @@ export type CreateAIAgentPayload = {
description: string
arguments?: Record<string, string>
}[]
graphTools: string[]
}
export type UpdateAIAgentPayload = CreateAIAgentPayload & {