-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b5ea6e
commit f16e958
Showing
4 changed files
with
31 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Memory | ||
|
||
OmAgent implements two types of memory systems: | ||
|
||
1. **Short-Term Memory (STM)** | ||
- Temporary storage for workflow-specific data | ||
- Implemented using Redis by default | ||
- Useful for storing session/workflow state | ||
- Data is volatile and workflow-instance specific | ||
|
||
2. **Long-Term Memory (LTM)** | ||
- Persistent storage for long-term data | ||
- Implemented using vector database | ||
- Supports vector storage and similarity search | ||
- Data persists across different workflow instances | ||
|