From 6f293c90f465f6f165038d7f41bd548bebfdc53e Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Sun, 22 Oct 2023 23:15:01 -0700 Subject: [PATCH] Update README.md --- memgpt/local_llm/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memgpt/local_llm/README.md b/memgpt/local_llm/README.md index a8c2304a..a82e2127 100644 --- a/memgpt/local_llm/README.md +++ b/memgpt/local_llm/README.md @@ -32,6 +32,8 @@ class LLMChatCompletionWrapper(ABC): pass ``` +## Example with Airoboros LLM + To help you get started, we've implemented an example wrapper class for a popular llama2 model finetuned on function calling (airoboros). We want MemGPT to run well on open models as much as you do, so we'll be actively updating this page with more examples. Additionally, we welcome contributions from the community! If you find an open LLM that works well with MemGPT, please open a PR with a model wrapper and we'll merge it ASAP. ```python