Skip to content

Commit

Permalink
Add prereq sections
Browse files Browse the repository at this point in the history
  • Loading branch information
EricGustin committed Feb 20, 2025
1 parent 49eb356 commit 5245724
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion pages/home/crewai/custom-auth-flow.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ In this guide, we will explore how to create a custom auth flow that will be per

<Steps>

### Prerequisites

- [Obtain an Arcade API key](/home/api-key)

### Set up your environment

Install the required package, and ensure your environment variables are set with your Arcade and OpenAI API keys:
Expand Down Expand Up @@ -83,7 +87,7 @@ def tool_manager_callback(tool_manager: ArcadeToolManager, tool_name: str, **too

### Create and manage Arcade tools

You can now provide the tool manager callback to the ArcadeToolManager upon initialization:
You can now provide the tool manager callback to the `ArcadeToolManager` upon initialization:

```python
# Provide the tool manager callback to the ArcadeToolManager
Expand Down
6 changes: 5 additions & 1 deletion pages/home/crewai/use-arcade-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ To tailor the tool authorization flow to meet your application's specific needs,

<Steps>

### Prerequisites

- [Obtain an Arcade API key](/home/api-key)

### Set up your environment

Install the required package, and ensure your environment variables are set with your Arcade and OpenAI API keys:
Expand All @@ -32,7 +36,7 @@ export OPENAI_API_KEY="your_openai_api_key"

### Create and manage Arcade tools

Use the *ArcadeToolManager* to initialize, add, and get Arcade tools:
Use the `ArcadeToolManager` to initialize, add, and get Arcade tools:

```python
from crewai_arcade import ArcadeToolManager
Expand Down

0 comments on commit 5245724

Please sign in to comment.