Skip to content

Commit e0a59fb

Browse files
committed
Merge remote-tracking branch 'origin/main' into tool-metadata-ui-and-markdown
2 parents c304284 + 2e574c9 commit e0a59fb

File tree

40 files changed

+1354
-50
lines changed

40 files changed

+1354
-50
lines changed

app/en/get-started/agent-frameworks/crewai/use-arcade-tools/page.mdx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Setup Arcade tools with CrewAI"
33
description: "Learn how to use Arcade tools in CrewAI applications"
44
---
55

6-
import { Steps, Callout } from "nextra/components";
6+
import { Steps, Tabs, Callout } from "nextra/components";
77

88
# Use Arcade tools with CrewAI
99

@@ -50,9 +50,25 @@ mkdir crewai-arcade-example
5050
cd crewai-arcade-example
5151
uv init
5252
uv venv
53+
```
54+
55+
<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
56+
<Tabs.Tab>
57+
58+
```bash
5359
source .venv/bin/activate
5460
```
5561

62+
</Tabs.Tab>
63+
<Tabs.Tab>
64+
65+
```powershell
66+
. ".venv\Scripts\Activate.ps1"
67+
```
68+
69+
</Tabs.Tab>
70+
</Tabs>
71+
5672
Install the necessary packages:
5773

5874
```bash

app/en/get-started/agent-frameworks/google-adk/setup-python/page.mdx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Setup Arcade with Google ADK (Python)"
33
description: "Build an agent with Arcade tools using Google ADK"
44
---
55

6-
import { Steps, Callout } from "nextra/components";
6+
import { Steps, Tabs, Callout } from "nextra/components";
77

88
# Setup Arcade with Google ADK (Python)
99

@@ -48,9 +48,25 @@ mkdir google-adk-arcade-example
4848
cd google-adk-arcade-example
4949
uv init
5050
uv venv
51+
```
52+
53+
<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
54+
<Tabs.Tab>
55+
56+
```bash
5157
source .venv/bin/activate
5258
```
5359

60+
</Tabs.Tab>
61+
<Tabs.Tab>
62+
63+
```powershell
64+
. ".venv\Scripts\Activate.ps1"
65+
```
66+
67+
</Tabs.Tab>
68+
</Tabs>
69+
5470
Install the necessary packages:
5571

5672
```bash

app/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-py/page.mdx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,26 @@ mkdir langchain-arcade-example
5252
cd langchain-arcade-example
5353
uv init
5454
uv venv
55+
```
56+
57+
<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
58+
<Tabs.Tab>
59+
60+
```bash
5561
source .venv/bin/activate
62+
```
63+
64+
</Tabs.Tab>
65+
<Tabs.Tab>
66+
67+
```powershell
68+
. ".venv\Scripts\Activate.ps1"
69+
```
70+
71+
</Tabs.Tab>
72+
</Tabs>
73+
74+
```bash
5675
uv add arcadepy langchain langchain-openai python-dotenv
5776
```
5877

app/en/get-started/agent-frameworks/openai-agents/setup-python/page.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,25 @@ mkdir openai-agents-arcade-example
5353
cd openai-agents-arcade-example
5454
uv init
5555
uv venv
56+
```
57+
58+
<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
59+
<Tabs.Tab>
60+
61+
```bash
5662
source .venv/bin/activate
5763
```
5864

65+
</Tabs.Tab>
66+
<Tabs.Tab>
67+
68+
```powershell
69+
. ".venv\Scripts\Activate.ps1"
70+
```
71+
72+
</Tabs.Tab>
73+
</Tabs>
74+
5975
Install the necessary packages:
6076

6177
```bash

app/en/get-started/agent-frameworks/setup-arcade-with-your-llm-python/page.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,25 @@ Create a new virtual environment and activate it:
5151

5252
```bash
5353
uv venv
54+
```
55+
56+
<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
57+
<Tabs.Tab>
58+
59+
```bash
5460
source .venv/bin/activate
5561
```
5662

63+
</Tabs.Tab>
64+
<Tabs.Tab>
65+
66+
```powershell
67+
. ".venv\Scripts\Activate.ps1"
68+
```
69+
70+
</Tabs.Tab>
71+
</Tabs>
72+
5773
Install the dependencies:
5874

5975
```bash

app/en/get-started/quickstarts/call-tool-agent/page.mdx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,25 @@ Install and use the Arcade client to call Arcade Hosted Tools.
6060

6161
```bash
6262
uv venv
63-
source .venv/bin/activate
6463
```
6564

65+
<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
66+
<Tabs.Tab>
67+
68+
```bash
69+
source .venv/bin/activate
70+
```
71+
72+
</Tabs.Tab>
73+
<Tabs.Tab>
74+
75+
```powershell
76+
. ".venv\Scripts\Activate.ps1"
77+
```
78+
79+
</Tabs.Tab>
80+
</Tabs>
81+
6682
Then, run the following command to install the Python client package `arcadepy`:
6783

6884
```bash

app/en/get-started/setup/api-keys/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ arcade login
8989
The CLI will automatically:
9090

9191
- Print your API key to the console
92-
- Save your credentials to `~/.arcade/credentials.yaml`
92+
- Save your credentials to `~/.arcade/credentials.yaml` (or `%USERPROFILE%\.arcade\credentials.yaml` on Windows)
9393

9494
</Steps>
9595

0 commit comments

Comments
 (0)