adachsoft/ai-image-xai
最新稳定版本:v0.2.0
Composer 安装命令:
composer require adachsoft/ai-image-xai
包简介
AI image explanation library
README 文档
README
AI image generator implementation for the X.AI (Grok) API.
Installation
composer require adachsoft/ai-image-xai
Usage
use AdachSoft\AiImageContract\Collections\ImageInputCollection;
use AdachSoft\AiImageContract\Exceptions\AiImageExceptionInterface;
use AdachSoft\AiImageContract\Models\GenerationRequest;
use AdachSoft\AiImageContract\ValueObjects\ImageSize;
use AdachSoft\AiImageContract\ValueObjects\Prompt;
use AdachSoft\AiImageXai\XaiImageGeneratorFactory;
$generator = XaiImageGeneratorFactory::create('your-xai-api-key');
$request = new GenerationRequest(
prompt: new Prompt('A cute dog with a lion mane'),
imageInputs: new ImageInputCollection([]),
size: new ImageSize(1024, 1024),
options: ['model' => 'grok-imagine-image'],
);
try {
$response = $generator->generate($request);
foreach ($response->images as $image) {
if ($image->url !== null) {
echo $image->url . PHP_EOL;
}
if ($image->b64Json !== null) {
echo $image->b64Json . PHP_EOL;
}
}
} catch (AiImageExceptionInterface $exception) {
echo $exception->getMessage();
}
Exception model
This adapter follows the adachsoft/ai-image-contract exception model.
ContentModerationExceptionis used for moderation and safety filter rejections.RetryableExceptionis used for temporary provider failures such as rate limits, connectivity issues, and transient server errors.GenerationFailedExceptionis used for non-retryable generation failures.
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-11