PHP code example of aisdk / zai

1. Go to this page and download the library: Download aisdk/zai 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/ */

    

aisdk / zai example snippets


use AiSdk\Generate;
use AiSdk\ZAI;

ZAI::create(['apiKey' => $_ENV['ZAI_API_KEY']]);

$result = Generate::text('Explain this code briefly.')
    ->model(ZAI::model('glm-5.1'))
    ->run();

ZAI::create([
    'apiKey' => $_ENV['ZAI_API_KEY'],
    'baseUrl' => 'https://api.z.ai/api/paas/v4',
]);