Update README.md (#208)

This commit is contained in:
Aymeric Roucher 2025-01-15 18:08:17 +01:00 committed by GitHub
parent 4c5f1fe4b4
commit 6ef0837f94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ In our `CodeAgent`, the LLM engine writes its actions in code. This approach is
and [reaches higher performance on difficult benchmarks](https://huggingface.co/papers/2411.01747). Head to [our high-level intro to agents](https://huggingface.co/docs/smolagents/conceptual_guides/intro_agents) to learn more on that. and [reaches higher performance on difficult benchmarks](https://huggingface.co/papers/2411.01747). Head to [our high-level intro to agents](https://huggingface.co/docs/smolagents/conceptual_guides/intro_agents) to learn more on that.
Especially, since code execution can be a security concern (arbitrary code execution!), we provide options at runtime: Especially, since code execution can be a security concern (arbitrary code execution!), we provide options at runtime:
- a secure python interpreter to run code more safely in your environment - a secure python interpreter to run code more safely in your environment (more secure than raw code execution but still risky)
- a sandboxed environment using [E2B](https://e2b.dev/). - a sandboxed environment using [E2B](https://e2b.dev/) (removes the risk to your own system).
## How smol is it really? ## How smol is it really?