From 08731764129836abec5e837be1b07cbf49b36dbf Mon Sep 17 00:00:00 2001 From: Cosmopolitan Hermes Date: Sat, 23 May 2026 13:54:57 +0800 Subject: [PATCH] docs: fix documentation typos Signed-off-by: Cosmopolitan Hermes --- README.md | 2 +- agentrun/__init__.py | 2 +- docs/examples/function_calling_groq.ipynb | 2 +- docs/index.md | 2 +- docs/release_notes.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c23de06..88c01aa 100644 --- a/README.md +++ b/README.md @@ -300,7 +300,7 @@ AgentRun has sane defaults, but totally customizable. You can change: > Using swap allows the system to handle more memory allocation than the physical memory available, but accessing swap is significantly slower than accessing RAM. -You can change any of the defauts when you initalize AgentRun as below. +You can change any of the defaults when you initialize AgentRun as below. ```Python from agentrun import AgentRun diff --git a/agentrun/__init__.py b/agentrun/__init__.py index b5e00fd..d9dd12e 100644 --- a/agentrun/__init__.py +++ b/agentrun/__init__.py @@ -445,7 +445,7 @@ def execute_code_in_container(self, python_code: str) -> str: finally: if container: - # run clean up in a seperate thread to avoid blocking the main thread + # run clean up in a separate thread to avoid blocking the main thread thread = Thread( target=self.clean_up, args=(container, script_name, dependencies) ) diff --git a/docs/examples/function_calling_groq.ipynb b/docs/examples/function_calling_groq.ipynb index f7ac2b7..f50558d 100644 --- a/docs/examples/function_calling_groq.ipynb +++ b/docs/examples/function_calling_groq.ipynb @@ -8,7 +8,7 @@ "\n", "Now, let's see AgentRun in action with something more complicated. We will take advantage of function calling and AgentRun, to have LLMs write and execute code on the fly to solve arbitrary tasks. You can find the full code under `docs/examples/`\n", "\n", - "> We are using the REST API as it is recommend to seperate the code execution service from the rest of our infrastructure.\n", + "> We are using the REST API as it is recommend to separate the code execution service from the rest of our infrastructure.\n", "\n", "First, we will install the needed packages. We are using mixtral here via groq to keep things fast and with minimal depenencies, but AgentRun works with any LLM out of the box. All what's required is for the LLM to return a code snippet.\n", "\n", diff --git a/docs/index.md b/docs/index.md index 2cfccdb..da3db3e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -297,7 +297,7 @@ AgentRun has sane defaults, but totally customizable. You can change: > Using swap allows the system to handle more memory allocation than the physical memory available, but accessing swap is significantly slower than accessing RAM. -You can change any of the defauts when you initalize AgentRun as below. +You can change any of the defaults when you initialize AgentRun as below. ```Python from agentrun import AgentRun diff --git a/docs/release_notes.md b/docs/release_notes.md index 384fb3d..fa46bd7 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -16,5 +16,5 @@ ## v0.1.1 (04-10-2024) - More documentation and examples - agentrun-api and agentrun combined Repo -- Cleaning up is now on a seperate thread. Performance improvement. +- Cleaning up is now on a separate thread. Performance improvement. - Benchmarks tests