Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ __pycache__
wandb/
artifacts/
node_modules/
.env
.env.*
!.env.example
8 changes: 7 additions & 1 deletion end-to-end-use-cases/whatsapp_llama_4_bot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,13 @@ pip install -r requirements.txt

### Step 3: Configure Environment Variables

Create a `.env` file in the project directory and add your API keys and other configuration details as follows:
Copy the `.env.example` file to `.env` and fill in your API keys:

```bash
cp .env.example .env
```

Then edit `.env` with your configuration details:

```plaintext
ACCESS_TOKEN=your_whatsapp_access_token
Expand Down