Harrison/update docs mem (#201)

This commit is contained in:
Harrison Chase
2022-11-26 06:38:49 -08:00
committed by GitHub
parent 05c5d0b8ee
commit d4e6b7a692
5 changed files with 30 additions and 2 deletions

View File

@@ -29,3 +29,9 @@ They vary greatly in complexity and are combination of generic, highly configura
## Agents
As opposed to a chain, whether the steps to be taken are known ahead of time, agents
use an LLM to determine which tools to call and in what order.
## Memory
By default, Chains and Agents are stateless, meaning that they treat each incoming query independently.
In some applications (chatbots being a GREAT example) it is highly important to remember previous interactions,
both at a short term but also at a long term level. The concept of "Memory" exists to do exactly that.