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
20 changes: 20 additions & 0 deletions docs/edge/en/concepts/llms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1155,6 +1155,26 @@ In this section, you'll find detailed examples that help you select, configure,
```
</Accordion>

<Accordion title="Crusoe">
Set the following environment variables in your `.env` file:
```toml Code
CRUSOE_API_KEY=<your-api-key>
```

Example usage in your CrewAI project:
```python Code
llm = LLM(
model="crusoe/zai/GLM-5.2",
temperature=0.7
)
```

**Note:** This provider uses LiteLLM. Add it as a dependency to your project:
```bash
uv add 'crewai[litellm]'
```
</Accordion>

<Accordion title="Perplexity AI">
Set the following environment variables in your `.env` file:
```toml Code
Expand Down