Download the PHP package clinically/laravel-ai-bedrock without Composer
On this page you can find all versions of the php package clinically/laravel-ai-bedrock. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download clinically/laravel-ai-bedrock
More information about clinically/laravel-ai-bedrock
Files in clinically/laravel-ai-bedrock
Package laravel-ai-bedrock
Short Description AWS Bedrock provider for the Laravel AI SDK
License MIT
Informations about the package laravel-ai-bedrock
Laravel AI Bedrock Provider — DEPRECATED
This package is deprecated and no longer maintained.
AWS Bedrock support is now built into
laravel/ainatively (since v0.6.3, April 2026, via PR #270). The native provider covers everything this package bridged — streaming, tool calling, embeddings (Titan + Cohere), and image generation (Nova Canvas) — built directly on the AWS SDK without a Prism dependency.Use the native provider in
laravel/ai^0.6.3 (or newer) instead. This repository is now archived.
Migration guide
1. Update composer.json
Then composer update.
2. Update config/ai.php
The native provider uses slightly different credential keys. Rename access_key → access_key_id and secret_key → secret_access_key:
Note: the native provider defaults to us.-prefixed cross-region inference profile IDs for text models. Adjust to your preferred region/profile.
3. Remove the service provider registration
The native provider is wired automatically by laravel/ai. Nothing extra to register.
4. Application code
No changes needed. Ai::textProvider('bedrock'), Ai::embeddingProvider('bedrock'), and the #[Agent(provider: 'bedrock')] attribute all continue to work the same way against the native provider.
Original purpose (historical)
This package existed because the official laravel/ai SDK did not include a Bedrock provider, and the upstream prism-php/bedrock package was missing streaming support. It bridged the two via clinically/prism-bedrock (also deprecated/archived).
All of these gaps are now closed in laravel/ai itself.
License
MIT License. See LICENSE for details.