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"?