Skip to content

Commit ae62347

Browse files
committed
fix: restore EPISODIC strategy to configuration.md
The revert of the CUSTOM strategy commit inadvertently removed the EPISODIC row from the Memory Strategies table in configuration.md.
1 parent 62a88b6 commit ae62347

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/configuration.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,12 @@ on the next deployment.
239239

240240
### Memory Strategies
241241

242-
| Strategy | Description |
243-
| ----------------- | --------------------------------------------------- |
244-
| `SEMANTIC` | Vector-based similarity search for relevant context |
245-
| `SUMMARIZATION` | Compressed conversation history |
246-
| `USER_PREFERENCE` | Store user-specific preferences and settings |
242+
| Strategy | Description |
243+
| ----------------- | ------------------------------------------------------ |
244+
| `SEMANTIC` | Vector-based similarity search for relevant context |
245+
| `SUMMARIZATION` | Compressed conversation history |
246+
| `USER_PREFERENCE` | Store user-specific preferences and settings |
247+
| `EPISODIC` | Capture and reflect on meaningful interaction episodes |
247248

248249
Strategy configuration:
249250

src/schema/llm-compacted/agentcore.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ interface NetworkConfig {
3737
type MemoryStrategyType = 'SEMANTIC' | 'SUMMARIZATION' | 'USER_PREFERENCE' | 'EPISODIC';
3838
type ModelProvider = 'Bedrock' | 'Gemini' | 'OpenAI' | 'Anthropic';
3939

40-
4140
// ─────────────────────────────────────────────────────────────────────────────
4241
// AGENT
4342
// ─────────────────────────────────────────────────────────────────────────────

0 commit comments

Comments
 (0)