Fix text issue (#12221)

### What problem does this PR solve?

Fix several text issues.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2025-12-26 11:18:08 +08:00
committed by GitHub
parent 5fb38ecc2a
commit 6044314811
18 changed files with 62 additions and 62 deletions

View File

@ -16,7 +16,7 @@ export interface MemoryListParams {
export type MemoryType = 'raw' | 'semantic' | 'episodic' | 'procedural';
export type StorageType = 'table' | 'graph';
export type Permissions = 'me' | 'team';
export type ForgettingPolicy = 'fifo' | 'lru';
export type ForgettingPolicy = 'FIFO' | 'LRU';
export interface ICreateMemoryProps {
name: string;
memory_type: MemoryType[];