From 3c52977e7f929f9388e7f89990152a81949dcf3d Mon Sep 17 00:00:00 2001 From: Aymeric Date: Fri, 27 Dec 2024 16:53:31 +0100 Subject: [PATCH] Nits in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 44c8da15..ec2afb2e 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,10 @@ Especially, since code execution can be a security concern (arbitrary code execu - a secure python interpreter to run code more safely in your environment - a sandboxed environment using [E2B](https://e2b.dev/). -## How lightweight is it? +## How smol is it really? We strived to keep abstractions to a strict minimum: the main code in `agents.py` is only ~1,000 lines of code. -Still, we implement several types of agents: `CodeAgent` writing its actions in code snippets, and the more classic `ToolCallingAgent` that leverage built-in tool calling methods. +Still, we implement several types of agents: `CodeAgent` writes its actions as Python code snippets, and the more classic `ToolCallingAgent` that leverages built-in tool calling methods. Many people ask: why use a framework at all? Well, because a big part of this stuff is non-trivial. For instance, the code agent has to keep a consistent format for code throughout its system prompt, its parser, the execution. So our framework handles this complexity for you. But of course we still encourage you to hack into the source code and use only the bits that you need, to the exclusion of everything else!