feat: agent node add memory (#15976)

This commit is contained in:
Novice 2025-04-03 16:40:58 +08:00 committed by GitHub
commit dcdec98c8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 = {