feat: agent node add memory (#15976)

This commit is contained in:
Novice
2025-04-03 16:40:58 +08:00
committed by GitHub
parent 3d76f09c3a
commit dcdec98c8e
7 changed files with 116 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
import type { CredentialFormSchemaBase } from '../header/account-setting/model-provider-page/declarations'
import type { ToolCredential } from '@/app/components/tools/types'
import type { Locale } from '@/i18n'
import type { AgentFeature } from '@/app/components/workflow/nodes/agent/types'
export enum PluginType {
tool = 'tool',
model = 'model',
@@ -418,6 +418,7 @@ export type StrategyDetail = {
parameters: StrategyParamItem[]
description: Record<Locale, string>
output_schema: Record<string, any>
features: AgentFeature[]
}
export type StrategyDeclaration = {