From c049e31f69ce05037b7da16b340e06a777f846c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 22:19:06 +0000 Subject: [PATCH] Editorial: Structure - Added intro line; Voice and tone - Changed "now" to be less time-specific --- app/en/get-started/about-arcade/page.mdx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/en/get-started/about-arcade/page.mdx b/app/en/get-started/about-arcade/page.mdx index 44a049a7a..7af63687a 100644 --- a/app/en/get-started/about-arcade/page.mdx +++ b/app/en/get-started/about-arcade/page.mdx @@ -8,6 +8,8 @@ import Image from "next/image"; # About Arcade +Arcade provides an authorization system for agentic applications that need to access sensitive data and perform actions on behalf of users. + Applications that use models to perform tasks (_agentic applications_) commonly require access to sensitive data and services. Authentication complexities often hinder AI from performing tasks that require user-specific information, like what emails were recently received or what's coming up on a calendar. To retrieve this information, agentic applications need to be able to authenticate and authorize access to external services like Gmail or Google Calendar. @@ -35,7 +37,7 @@ Arcade provides an authorization system that handles OAuth 2.0, API keys, and us height={1741} /> -With Arcade, developers can now create agents that can _act as the end users of their application_ to perform tasks like: +With Arcade, developers can create agents that can _act as the end users of their application_ to perform tasks like: - Creating a new Zoom meeting - Sending or reading email @@ -71,8 +73,7 @@ tool_name="GoogleSearch.Search", input={"query": "Latest AI advancements"}, ) print(response.output.value) - -```` +``` @@ -87,7 +88,7 @@ const response = await client.tools.execute({ input: { query: "Latest AI advancements" }, }); console.log(response.output.value); -```` +``` - + \ No newline at end of file