From 8b1d667f4229ec09f9dbaa1c827616a6f96d3481 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 18 Oct 2025 16:13:14 -0400 Subject: [PATCH] changing c/ua to cua --- blog/bringing-computer-use-to-the-web.md | 16 ++++++++-------- .../docs/agent-sdk/benchmarks/introduction.mdx | 8 ++++---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/blog/bringing-computer-use-to-the-web.md b/blog/bringing-computer-use-to-the-web.md index a5593c12..196af3d1 100644 --- a/blog/bringing-computer-use-to-the-web.md +++ b/blog/bringing-computer-use-to-the-web.md @@ -2,9 +2,9 @@ *Published on August 5, 2025 by Morgan Dean* -In one of our original posts, we explored building Computer-Use Operators on macOS - first with a [manual implementation](build-your-own-operator-on-macos-1.md) using OpenAI's `computer-use-preview` model, then with our [cua-agent framework](build-your-own-operator-on-macos-2.md) for Python developers. While these tutorials have been incredibly popular, we've received consistent feedback from our community: **"Can we use C/ua with JavaScript and TypeScript?"** +In one of our original posts, we explored building Computer-Use Operators on macOS - first with a [manual implementation](build-your-own-operator-on-macos-1.md) using OpenAI's `computer-use-preview` model, then with our [cua-agent framework](build-your-own-operator-on-macos-2.md) for Python developers. While these tutorials have been incredibly popular, we've received consistent feedback from our community: **"Can we use Cua with JavaScript and TypeScript?"** -Today, we're excited to announce the release of the **`@trycua/computer` Web SDK** - a new library that allows you to control your C/ua cloud containers from any JavaScript or TypeScript project. With this library, you can click, type, and grab screenshots from your cloud containers - no extra servers required. +Today, we're excited to announce the release of the **`@trycua/computer` Web SDK** - a new library that allows you to control your Cua cloud containers from any JavaScript or TypeScript project. With this library, you can click, type, and grab screenshots from your cloud containers - no extra servers required. With this new SDK, you can easily develop CUA experiences like the one below, which we will release soon as open source. @@ -19,7 +19,7 @@ Let’s see how it works. By the end of this tutorial, you'll be able to: - Set up the `@trycua/computer` npm library in any JavaScript/TypeScript project -- Connect OpenAI's computer-use model to C/ua cloud containers from web applications +- Connect OpenAI's computer-use model to Cua cloud containers from web applications - Build computer-use agents that work in Node.js, React, Vue, or any web framework - Handle different types of computer actions (clicking, typing, scrolling) from web code - Implement the complete computer-use loop in JavaScript/TypeScript @@ -30,7 +30,7 @@ By the end of this tutorial, you'll be able to: - Node.js 16+ and npm/yarn/pnpm - Basic JavaScript or TypeScript knowledge - OpenAI API access (Tier 3+ for computer-use-preview) -- C/ua cloud container credits ([get started here](https://trycua.com/pricing)) +- Cua cloud container credits ([get started here](https://trycua.com/pricing)) **Estimated Time:** 45-60 minutes @@ -47,9 +47,9 @@ At the time of writing, the **computer-use-preview** model has limited availabil Luckily, the `@trycua/computer` library can be used in conjunction with other models, like [Anthropic’s Computer Use](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/computer-use-tool) or [UI-TARS](https://huggingface.co/ByteDance-Seed/UI-TARS-1.5-7B). You’ll just have to write your own handler to parse the model output for interfacing with the container. -### C/ua Cloud Containers +### Cua Cloud Containers -To follow this guide, you’ll need access to a C/ua cloud container. +To follow this guide, you’ll need access to a Cua cloud container. Getting access is simple: purchase credits from our [pricing page](https://trycua.com/pricing), then create and provision a new container instance from the [dashboard](https://trycua.com/dashboard/containers). With your container running, you'll be ready to leverage the web SDK and bring automation to your JavaScript or TypeScript applications. @@ -142,7 +142,7 @@ Each response contains: ## Implementation Guide -### Provision a C/ua Cloud Container +### Provision a Cua Cloud Container 1. Visit [trycua.com](https://trycua.com), sign up, purchase [credits](https://trycua.com/pricing), and create a new container instance from the [dashboard](https://trycua.com/dashboard). 2. Create an API key from the dashboard — be sure to save it in a secure location before continuing. @@ -159,7 +159,7 @@ Each response contains: Works with any JavaScript/TypeScript project setup - whether you're using Create React App, Next.js, Vue, Angular, or plain JavaScript. - 2. Save your OpenAI API key, C/ua API key, and container name to a `.env` file: + 2. Save your OpenAI API key, Cua API key, and container name to a `.env` file: ```bash OPENAI_API_KEY=openai-api-key diff --git a/docs/content/docs/agent-sdk/benchmarks/introduction.mdx b/docs/content/docs/agent-sdk/benchmarks/introduction.mdx index 3f2251f8..ed4015a9 100644 --- a/docs/content/docs/agent-sdk/benchmarks/introduction.mdx +++ b/docs/content/docs/agent-sdk/benchmarks/introduction.mdx @@ -1,9 +1,9 @@ --- title: Introduction -description: Overview of benchmarking in the c/ua agent framework +description: Overview of benchmarking in the cua agent framework --- -The c/ua agent framework uses benchmarks to test the performance of supported models and providers at various agentic tasks. +The cua agent framework uses benchmarks to test the performance of supported models and providers at various agentic tasks. ## Benchmark Types @@ -13,7 +13,7 @@ Computer-Agent benchmarks evaluate two key capabilities: ## Using State-of-the-Art Models -Let's see how to use the SOTA vision-language models in the c/ua agent framework. +Let's see how to use the SOTA vision-language models in the cua agent framework. ### Plan Generation + Coordinate Generation @@ -46,7 +46,7 @@ agent.predict_click("find the button to open the settings") # (27, 450) ### Composed Agent -The c/ua agent framework also supports composed agents, which combine a planning model with a clicking model for the best of both worlds. Any liteLLM model can be used as the plan generation model. +The cua agent framework also supports composed agents, which combine a planning model with a clicking model for the best of both worlds. Any liteLLM model can be used as the plan generation model. ```python # It can be paired with any LLM to form a composed agent: