cedricziel / leonardoai-php

Leonardo.ai SDK for PHP

v1.0.0 2024-07-12 17:09 UTC

This package is auto-updated.

Last update: 2024-09-12 17:39:11 UTC


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