Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Marvin provides an intuitive API for defining workflows and delegating work to L

## Installation

Install `marvin`:
Marvin is available on [PyPI](https://pypi.org/project/marvin/):

```bash
uv pip install marvin
uv add marvin
```

Configure your LLM provider (Marvin uses OpenAI by default but natively supports [all Pydantic AI models](https://ai.pydantic.dev/models/)):
Expand Down
2 changes: 0 additions & 2 deletions docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ The easiest way to install Marvin is a package manager like `pip` or [`uv`](http
```bash uv
# add marvin to your project
uv add marvin
# add marvin to your virtual environment
uv pip install marvin
# add marvin to your script
uv add --script some_script.py marvin
# run a python process with marvin installed ephemerally
Expand Down
10 changes: 5 additions & 5 deletions docs/patterns/memory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ pip install "marvin[chroma]"
```

```bash uv
uv pip install "marvin[chroma]"
uv add "marvin[chroma]"
```
</CodeGroup>

Expand Down Expand Up @@ -170,7 +170,7 @@ pip install "marvin[lance]"
```

```bash uv
uv pip install "marvin[lance]"
uv add "marvin[lance]"
```

</CodeGroup>
Expand Down Expand Up @@ -198,7 +198,7 @@ pip install "marvin[postgres]"
```

```bash uv
uv pip install "marvin[postgres]"
uv add "marvin[postgres]"
```

</CodeGroup>
Expand Down Expand Up @@ -229,7 +229,7 @@ pip install "marvin" "qdrant-client[fastembed]"
```

```bash uv
uv pip install "marvin" "qdrant-client[fastembed]"
uv add marvin "qdrant-client[fastembed]"
```

</CodeGroup>
Expand Down Expand Up @@ -259,6 +259,6 @@ pip install "marvin[memory]" # Includes chroma, lance, postgres, qdrant
```

```bash uv
uv pip install "marvin[memory]" # Includes chroma, lance, postgres and qdrant
uv add "marvin[memory]" # Includes chroma, lance, postgres and qdrant
```
</CodeGroup>
8 changes: 2 additions & 6 deletions examples/slackbot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,8 @@ The slackbot can be run locally with minimal setup.
### Local Development

```console
# Create and activate a virtual environment with uv
uv venv --python 3.12
source .venv/bin/activate

# Install dependencies
uv pip install -e ".[slackbot]" -U
# Install dependencies (from the repo root)
uv sync --extra slackbot
```

### Configuration
Expand Down