fix(web): make raw memory type non-removable in multi-select (#17119)

This commit is contained in:
euvre
2026-07-20 19:20:26 +08:00
committed by GitHub
parent da2b1ce6d6
commit 8c18c4402a

View File

@@ -11,7 +11,7 @@ export enum MemoryType {
Procedural = 'procedural',
}
export const MemoryOptions = (t: TFunction) => [
{ label: t('memories.raw'), value: MemoryType.Raw },
{ label: t('memories.raw'), value: MemoryType.Raw, disabled: true },
{ label: t('memories.semantic'), value: MemoryType.Semantic },
{ label: t('memories.episodic'), value: MemoryType.Episodic },
{ label: t('memories.procedural'), value: MemoryType.Procedural },