Download the PHP package claude-php/claude-3-api without Composer
On this page you can find all versions of the php package claude-php/claude-3-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download claude-php/claude-3-api
More information about claude-php/claude-3-api
Files in claude-php/claude-3-api
Package claude-3-api
Short Description A PHP package for the Claude 3.7 Sonnet API
License MIT
Informations about the package claude-3-api
Claude 3 API PHP Package
A robust PHP package for interacting with Anthropic's Claude 3 API, supporting both text and vision capabilities.
Features
- Easy-to-use interface for sending messages to Claude (default), OpenAI and DeepSeek
- Support for text-based conversations with a simple chat method
- Streaming support for real-time responses
- Vision capabilities - send images along with text prompts (Claude only)
- Tool usage support (Claude only)
- Prompt caching support for improved performance and cost efficiency (Claude only)
- Comprehensive error handling
- Fully tested with PHPUnit
Installation
You can install the package via composer:
Usage
Basic Chat Usage
For simple text-based interactions, you can use the chat
method:
Basic Chat Usage
For simple text-based interactions, you can use the chat
method in several ways:
-
Send a single string message:
-
Send a single message as an array:
-
Continue a conversation with multiple messages:
- Specify a model or max tokens (optional):
The chat
method is flexible and can handle various input formats, making it easy to interact with Claude in different scenarios.
Streaming
Stream with text message
Stream with Array
OpenAI
There is only limited support for OpenAI API for Chat Completion and Streaming.
DeepSeek
There is only limited support for DeepSeek API for Chat Completion and Streaming.
Other Compatible Providers
There is the flexibility to use other providers, but the API is not fully supported.
Advanced Usage
For more complex scenarios, you can still use the sendMessage
method with a MessageRequest
object:
Vision Capabilities
Stream with MessageRequest
Using Tools
Using Prompt Caching
Prompt caching is a powerful feature that optimizes API usage by allowing resuming from specific prefixes in your prompts, reducing token costs and response times.
Cache Control Methods
The library provides helper methods to work with prompt caching:
Prompt Caching Requirements
- Supported models: Claude 3.7 Sonnet, Claude 3.5 Sonnet, Claude 3.5 Haiku, Claude 3 Haiku, Claude 3 Opus
- Minimum cacheable prompt length:
- 1024 tokens for Claude 3.7 Sonnet, Claude 3.5 Sonnet, and Claude 3 Opus
- 2048 tokens for Claude 3.5 Haiku and Claude 3 Haiku
- The cache has a minimum 5-minute lifetime
- Currently only "ephemeral" cache type is supported
Using Beta Features
The package supports configurable beta features provided by Anthropic's API.
128k Token Output for Claude 3.7 Sonnet
Claude 3.7 Sonnet supports an extended output token limit of up to 128k tokens. Here's how to enable it:
This feature is particularly useful for generating or processing large amounts of content in a single API call.
Testing
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Maintainer
This package is maintained by Dale Hurley.
Support Dale's Work
You can support Dale by checking out his other solutions:
- Full.CX - Transform your product vision into actionable dev tasks with AI-powered clarity and precision
- Custom Homework Maker - Create engaging, personalized homework assignments in seconds with advanced AI technology
- SpeedBrain - Challenge yourself with this addictive, fast-paced knowledge game - completely free!
- Spotfillr - The smart solution for childcare centers to maximize occupancy and revenue through automated casual spot management
- 1-to-5 App - Help your children develop emotional intelligence with this engaging, research-backed emotional learning companion
- RapidReportCard - Streamline performance reviews and unlock your team's full potential with AI-powered insights
- Risks.io - Stay ahead of project risks with our intelligent platform for seamless risk management and mitigation
- TimeLodge - Simplify your business with powerful time tracking, professional invoicing, and seamless payment processing
- ToolNames - Tools and calculators for everything.
License
This Claude 3 API Package is open-sourced software licensed under the MIT license.
Support
If you encounter any problems or have any questions, please open an issue in the GitHub repository.
Disclaimer
This package is not officially associated with Anthropic. Make sure to comply with Anthropic's terms of service when using this package.
Recent Changes
Version 0.1.23
- Added support for prompt caching
- Added CacheControl model for managing cache settings
- Updated TextContent to support cache_control parameter
- Added cache-related helper methods to MessageResponse
- Improved documentation with prompt caching examples and best practices
Version 0.1.22
- Fixed the tests
Version 0.1.21
- Fixed type inconsistency in Config constructor to support strict types
- Added Composer test command - you can now run tests with
composer test
- Added comprehensive test suite for new features and strict types compatibility
Version 0.1.20
- Updated default model to Claude 3.7 Sonnet (
claude-3-7-sonnet-latest
) - Added support for configurable beta features
- Added support for 128k token output for Claude 3.7 Sonnet
- Added convenience methods to enable beta features:
enable128kOutput()
- Enables 128k token output beta featureenable128kOutputWithTokens()
- Enables 128k token output and sets max tokens
- Added general beta feature management methods:
enableBetaFeature()
- Enable a specific beta featuredisableBetaFeature()
- Disable a specific beta featuresetBetaFeatures()
- Configure multiple beta features at onceisBetaFeatureEnabled()
- Check if a specific beta feature is enabledgetBetaFeatures()
- Get all configured beta features