Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.
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
18 changes: 18 additions & 0 deletions docs/swarms/install/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,24 @@
WORKSPACE_DIR="agent_workspace"
```

### Configure Environment Variables

Create a `.env` file in your project root and add your provider keys along with
the workspace directory:

```bash
OPENAI_API_KEY="your-openai-key"
WORKSPACE_DIR="agent_workspace"
```

Load these variables before running an agent:

```python
from dotenv import load_dotenv
load_dotenv()

```

### **Installation**

To install Swarms, run:
Expand Down
Loading