From ae6d35ffa557455d093165612c3d4c77dccf1330 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Tue, 9 Sep 2025 11:23:13 -0400 Subject: [PATCH] Fixed broken link --- docs/content/docs/agent-sdk/customizing-computeragent.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/content/docs/agent-sdk/customizing-computeragent.mdx b/docs/content/docs/agent-sdk/customizing-computeragent.mdx index d94f4ec0..dac0d35f 100644 --- a/docs/content/docs/agent-sdk/customizing-computeragent.mdx +++ b/docs/content/docs/agent-sdk/customizing-computeragent.mdx @@ -13,8 +13,6 @@ This guide shows four proven ways to increase capabilities and success rate: - 3 — Intermediate: Callbacks - 4 — Expert: Custom `@register_agent` -For a hands-on walkthrough, see the companion notebook: [notebooks/customizing_computeragent.ipynb](../../../notebooks/customizing_computeragent.ipynb). - ## 1) Simple: Prompt engineering Provide guiding instructions to shape behavior. `ComputerAgent` accepts an optional `instructions: str | None` which acts like a system-style preface. Internally, this uses a callback that pre-pends a user message before each LLM call.