From dcb849ea2623899e9bb66c4e422ea1d40894c749 Mon Sep 17 00:00:00 2001 From: James Murdza Date: Tue, 7 Oct 2025 15:48:21 -0700 Subject: [PATCH] Add links to the quickstart guide --- docs/content/docs/quickstart-devs.mdx | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/docs/content/docs/quickstart-devs.mdx b/docs/content/docs/quickstart-devs.mdx index 1f273e35..d442f3f0 100644 --- a/docs/content/docs/quickstart-devs.mdx +++ b/docs/content/docs/quickstart-devs.mdx @@ -7,7 +7,7 @@ icon: Rocket import { Step, Steps } from 'fumadocs-ui/components/steps'; import { Tab, Tabs } from 'fumadocs-ui/components/tabs'; -This quickstart guides you through setting up your environment, programmatic control with Cua Computer, and task automation with Cua Agent: +This quickstart guides you through setting up your [computer environment](#set-up-your-computer-environment), programmatic control with a [Cua computer](#using-computer), and task automation with a [Cua agent](#using-agent): @@ -173,9 +173,6 @@ Connect to your Cua computer and perform basic interactions, such as taking scre finally: await computer.close() ``` - - You can automate these actions using an agent. - Install the Cua computer TypeScript SDK: @@ -263,19 +260,18 @@ Connect to your Cua computer and perform basic interactions, such as taking scre await computer.close(); } ``` - - You can automate these actions using an agent. - +Learn more about computers in the [Cua computers documentation](/computer-sdk/computers). You will see how to automate computers with agents in the next step. + ## Using Agent -Utilize an `Agent` to automate complex tasks by providing it with a goal and allowing it to interact with the computer environment. +Utilize an Agent to automate complex tasks by providing it with a goal and allowing it to interact with the computer environment. Install the Cua agent Python SDK: ```bash @@ -300,10 +296,13 @@ async for result in agent.run(messages): print(item["content"][0]["text"]) ``` +Learn more about agents in [Agent Loops](/agent-sdk/agent-loops) and available models in [Supported Models](/agent-sdk/supported-model-providers/). + ## Next Steps -- Learn about [trajectory tracking](/agent-sdk/callbacks/trajectories) and [callbacks](/agent-sdk/callbacks/agent-lifecycle) -- Join our [Discord community](https://discord.com/invite/mVnXXpdE85) for support +- Learn more about [Cua computers](/computer-sdk/computers) and [computer commands](/computer-sdk/commands) +- Read about [Agent loops](/agent-sdk/agent-loops), [tools](/agent-sdk/custom-tools), and [supported model providers](/agent-sdk/supported-model-providers/) +- Join our [Discord community](https://discord.com/invite/mVnXXpdE85) for help