-
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.
update ConversationMemory.md (and related)
- Loading branch information
1 parent
4a31da4
commit d592a7e
Showing
6 changed files
with
48 additions
and
9 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
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,3 +1,5 @@ | ||
# Foam | ||
|
||
A way to make [VsCode](VsCode.md) interact with Markdown like [Obsidian](Obsidian.md) does | ||
A way to make [VsCode](VsCode.md) interact with Markdown like [Obsidian](Obsidian.md) does | ||
|
||
Not technically an AI tool, but its well suited to become one (like [Obsidian](Obsidian.md) is) |
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,3 @@ | ||
# Retrieval Augmented Generation (RAG) | ||
|
||
https://python.langchain.com/docs/use_cases/question_answering/ |
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,23 @@ | ||
# User Interface | ||
|
||
The stuff we want to let the [User](User.md) control about the [ChatBot](ChatBot.md) | ||
|
||
## LLM Config | ||
- [ ] ModelName (default = "gpt4-1106-preview" for now, "gpt4-turbo" when it becomes available) | ||
- [ ] Temperature (default = 0.7 I think) | ||
- [ ] **OtherModelParameters | ||
|
||
## Conversation Memory | ||
- [ ] Type, window, etc | ||
|
||
## [Vectorstore](VectorStore.md) config | ||
- [ ] Which [Vectorstore](VectorStore.md) [contexts](ContextRoute.md) to make available: | ||
- [ ] [FileSystem](FileSystem.md) interface kinda thing) | ||
- [ ] Individual Documents (think like textbooks, websites, etc) | ||
|
||
- [ ] Retrieval | ||
- [ ] By Tag (human applied) | ||
- [ ] By Topic (AI extracted) | ||
- [ ] By Summary (AI generated) | ||
- Generate summaries at multiple scales, like I did with the [PaperSummary](https://github.com/jonmatthis/chatbot/blob/main/chatbot/ai/workers/green_check_handler/parse_green_check_messages.py#L20) thing in OG [ClassBot](ClassBot.md) | ||
|
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