cedricziel / leonardoai-php
Leonardo.ai SDK for PHP
v1.0.0
2024-07-12 17:09 UTC
Requires
- php: ^8.3
- jane-php/open-api-runtime: ^7.8
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.59
- jane-php/open-api-3: ^7.8
README
Leonardo AI SDK for PHP
安装
composer require cedricziel/leonardoai-php
使用
您需要从 Leonardo 获取 API 密钥
客户端创建
$authenticationRegistry = new AuthenticationRegistry([new ApiKeyAuthentication('my-api-key')]); $client = Client::create(null, [$authenticationRegistry]);
获取当前用户
$client->getUserSelf();
图像生成:创建
$body = GenerationsPostBody(); $body->setPrompt('A cat on a tree'); $res = $client->createGeneration($body);
许可
MIT