1. Go to this page and download the library: Download nunodonato/anthropic-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nunodonato / anthropic-php example snippets
use NunoDonato\AnthropicAPIPHP\Client;
// ...
$client = new Client($yourApiKey);
use NunoDonato\AnthropicAPIPHP\Client;
use NunoDonato\AnthropicAPIPHP\Messages;
// ...
$client = new Client($yourApiKey);
$messages = new Messages();
$messages->addUserTextMessage('Hello AI!');
$response = $this->client->messages(Client::MODEL_SONNET, $messages);
// you can chain messages
$messages->addUserTextMessage('Hello AI!')
->addAssistantTextMessage('Hello human!')
->addUserImageMessage('https://example.com/image.jpg', 'What do you see here?');