From 0567f56ec7ca727dc6b499591b6c97d1de5a23df Mon Sep 17 00:00:00 2001 From: Joshua Mo Date: Mon, 19 Jan 2026 14:22:45 +0000 Subject: [PATCH] docs(rig-1107): fix typo on tools quickstart page --- pages/docs/quickstart/tools.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/quickstart/tools.mdx b/pages/docs/quickstart/tools.mdx index a11573b..66ef2b3 100644 --- a/pages/docs/quickstart/tools.mdx +++ b/pages/docs/quickstart/tools.mdx @@ -62,7 +62,7 @@ impl Tool for Adder { Then you can call it with your agent during the builder method like so: ```rust -// Create agent with a single context prompt and two tools +// Create agent with a single context prompt and add a tool let calculator_agent = openai_client .agent(providers::openai::GPT_4O) .preamble("You are a calculator here to help the user perform arithmetic operations. Use the tools provided to answer the user's question.")