update docs (#547)

* update admonitions

* Update local_llm.md

* Update webui.md

* Update autogen.md

* Update storage.md

* Update example_chat.md

* Update example_data.md

* Update example_chat.md

* Update example_data.md
This commit is contained in:
Charles Packer
2023-12-01 11:23:43 -08:00
committed by GitHub
parent b80b816856
commit a2bf5a2b58
7 changed files with 18 additions and 15 deletions

View File

@@ -1,7 +1,8 @@
!!! note "Note"
Before starting this example, make sure that you've [properly installed MemGPT](../quickstart)
## Using MemGPT to create a perpetual chatbot
_Before starting this example, make sure that you've [properly installed MemGPT](../quickstart)._
In this example, we're going to use MemGPT to create a chatbot with a custom persona. MemGPT chatbots are "perpetual chatbots", meaning that they can be run indefinitely without any context length limitations. MemGPT chatbots are self-aware that they have a "fixed context window", and will manually manage their own memories to get around this problem by moving information in and out of their small memory window and larger external storage.
MemGPT chatbots always keep a reserved space in their "core" memory window to store their `persona` information (describes the bot's personality + basic functionality), and `human` information (which describes the human that the bot is chatting with). The MemGPT chatbot will update the `persona` and `human` core memory blocks over time as it learns more about the user (and itself).