PHP code example of labsllm / llm-wrapper
1. Go to this page and download the library: Download labsllm/llm-wrapper 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/ */
labsllm / llm-wrapper example snippets
$execute = LabsLLM::text()
->using(new OpenAI('SK-***', 'gpt-4o-mini'))
->executePrompt('Your question here');
$response = $execute->getResponseData();
echo $response->response;
// Using Google
$execute = LabsLLM::text()
->using(new Google('API-KEY', 'gemini-pro'))
->executePrompt('Your question here');
// Using Anthropic
$execute = LabsLLM::text()
->using(new Anthropic('API-KEY', 'claude-3-opus'))
->executePrompt('Your question here');