mirror of
https://github.com/whyour/qinglong.git
synced 2025-12-13 07:25:05 +08:00
17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
import { FlowNodeBaseType } from '@flowgram.ai/fixed-layout-editor';
|
|
|
|
import { FlowNodeRegistry } from '../../typings';
|
|
|
|
export const AgentMemoryNodeRegistry: FlowNodeRegistry = {
|
|
type: 'agentMemory',
|
|
extend: FlowNodeBaseType.SLOT_BLOCK,
|
|
meta: {
|
|
addDisable: true,
|
|
sidebarDisable: true,
|
|
},
|
|
info: {
|
|
icon: '',
|
|
description: 'Agent Memory.',
|
|
},
|
|
};
|