From 0ecc10c3074f7bca1dab7a3bfd4e2aa0e1396bae Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Wed, 25 Oct 2023 16:45:17 -0700 Subject: [PATCH] Update README.md --- memgpt/local_llm/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memgpt/local_llm/README.md b/memgpt/local_llm/README.md index ff5d740e..0102f870 100644 --- a/memgpt/local_llm/README.md +++ b/memgpt/local_llm/README.md @@ -87,7 +87,7 @@ Enter your message: My name is Brad, not Chad...

🙋 Adding support for new LLMs + improving performance

-⁉️ When using open LLMs with MemGPT, **the main failure case will be your LLM outputting a string that cannot be understood by MemGPT**. MemGPT uses function calling to manage memory (eg `edit_core_memory(...)` and interact with the user (`send_message`), so your LLM needs generate outputs that can be parsed into MemGPT function calls. +⁉️ When using open LLMs with MemGPT, **the main failure case will be your LLM outputting a string that cannot be understood by MemGPT**. MemGPT uses function calling to manage memory (eg `edit_core_memory(...)`) and interact with the user (`send_message(...)`), so your LLM needs generate outputs that can be parsed into MemGPT function calls. ### What is a "wrapper"?