-
Notifications
You must be signed in to change notification settings - Fork 1
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
aaeada3
commit 4a31da4
Showing
3 changed files
with
23 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
# Conversation Memory | ||
- [ ] Token Buffer ([Langchain](https://python.langchain.com/docs/expression_language/cookbook/memory ) | ||
- [ ] With summary? | ||
- [ ] Summarization at different scales: | ||
- Full summary | ||
- course summary | ||
- fine summary | ||
- [ ] Topic/Tag extraction | ||
|
||
Memory within a conversation,[LangChain Memory Docs](https://js.langchain.com/docs/modules/memory/) | ||
|
||
Development plan: | ||
|
||
Required functionality: | ||
[ ]- Simple Buffer (keep `n` most recent messages) | ||
- [https://python.langchain.com/docs/expression_language/cookbook/memory](https://python.langchain.com/docs/expression_language/cookbook/memory) | ||
|
||
Future development: | ||
[ ]- Token Buffer (keep a buffer of messages that is less than `n` tokens) | ||
[ ]- Summary Buffer (keep a buffer of messages that is less than `n` tokens, but also summarize the messages) | ||
[ ]- Time weighted Vectorstore (keep a vectorstore of messages, weighted by time) | ||
- [https://js.langchain.com/docs/modules/data_connection/retrievers/time_weighted_vectorstore](https://js.langchain.com/docs/modules/data_connection/retrievers/time_weighted_vectorstore) |
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,9 @@ | ||
# AI Tools | ||
|
||
Useful tools, packages, softwares etc. | ||
|
||
|
||
- [LangChain](LangChain.md) | ||
- [OpenAi](OpenAI.md) | ||
|
||
- [ContinueDev](ContinueDev.md) |