-
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
1dee9b2
commit d025c34
Showing
7 changed files
with
78 additions
and
22 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
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,10 +1,9 @@ | ||
# Conversation Memory | ||
- [ ] Token Buffer ([Langchain](Langchain.md#TokenBufferMemory) ) | ||
- [ ] 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 | ||
|
||
[LongTermMemory](LongTermMemory.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# LLMChain | ||
|
||
- [X] Prompt | ||
- [ ] LLM | ||
- [ ] with backups | ||
- [X] LLM | ||
- [ ] Streaming | ||
- [ ] Via User Config | ||
- [ ] with backups/alternatives | ||
- [ ] Local model support |
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,11 @@ | ||
# LangChain | ||
# LangChain✨ | ||
|
||
https://js.langchain.com/docs/get_started/introduction | ||
|
||
We should do most/all of our LLM interactions through LangChain | ||
|
||
- Use the [LangChainExpressionLanguage](https://python.langchain.com/docs/expression_language/) when possible, but the old syntax is fine too, in a pinch | ||
- We use this to build tha [AiAgent](Agent.md), which powers the language side of the [Chatbot](Chatbot.md) | ||
|
||
[https://js.langchain.com/docs/get_started/introduction](https://python.langchain.com/docs/expression_language/cookbook/memory) | ||
|
||
[https://python.langchain.com/docs/modules/model_io/concepts](https://python.langchain.com/docs/expression_language/cookbook/memory) |
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,34 @@ | ||
# Terminology | ||
|
||
A reference article is information-oriented. | ||
It provides a structured description of a product: | ||
its APIs, classes, functions, configuration options, actions, and so on. | ||
Start with a summary of what this reference article is about, and what the items you are describing are used for. | ||
|
||
## Command | ||
|
||
Syntax: | ||
|
||
```shell | ||
cmd [OPTIONS] | ||
``` | ||
|
||
## Options | ||
|
||
Describe what each option is used for: | ||
|
||
-o, --open | ||
: Opens a file. | ||
|
||
-c, --close | ||
: Closes a file. | ||
|
||
-v, --version | ||
: Displays version information. | ||
|
||
-h, --help | ||
: Displays help. | ||
|
||
<seealso> | ||
<!--Provide links to related how-to guides, overviews, and tutorials.--> | ||
</seealso> |