Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions app/en/get-started/about-arcade/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -71,8 +73,7 @@ tool_name="GoogleSearch.Search",
input={"query": "Latest AI advancements"},
)
print(response.output.value)

````
```

</Tabs.Tab>
<Tabs.Tab>
Expand All @@ -87,7 +88,7 @@ const response = await client.tools.execute({
input: { query: "Latest AI advancements" },
});
console.log(response.output.value);
````
```

</Tabs.Tab>
</Tabs>
</Tabs>