Skip to content
Merged
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
16 changes: 15 additions & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Install the core package and the provider(s) you need:

```bash
composer require papi-ai/core
composer require papi-ai/papi-core

# Pick your provider(s)
composer require papi-ai/anthropic # Claude
Expand All @@ -24,6 +24,20 @@ For text-to-speech:
composer require papi-ai/elevenlabs # ElevenLabs TTS
```

Framework bridges, if you are not using Papi standalone:

```bash
composer require papi-ai/laravel # Laravel service provider, config, facade
composer require papi-ai/symfony # Symfony bundle, DI, Messenger
```

Optional extras:

```bash
composer require papi-ai/effect # Async video and fiber-based execution
composer require papi-ai/rtk # Token-optimisation proxy (needs the rtk binary)
```

## Requirements

- PHP 8.2+
Expand Down
Loading