0xmergen/zai-laravel-sdk
Composer 安装命令:
composer require 0xmergen/zai-laravel-sdk
包简介
ZAI Laravel SDK - Advanced AI integration package for Laravel 12
README 文档
README
A powerful, elegant Laravel SDK for Z.AI (Zhipu AI) API. Integrate advanced AI capabilities including chat completion, image generation, and OCR layout parsing into your Laravel applications with type-safe DTOs, fluent interfaces, and comprehensive error handling.
Features
- Chat Completion - Support for GLM-4.7, GLM-4.6, GLM-4.6V, GLM-4.5 series with thinking mode, tools/function calling, and streaming responses
- Vision (Multimodal) - Image and video understanding with GLM-4.6V series for document analysis, frontend replication, and visual search
- Image Generation - Generate images using
glm-imageandcogview-4-250304models with customizable quality and size - OCR & Layout Parsing - Extract text, tables, and formulas from PDFs and images with detailed layout information
- Type-Safe DTOs - Request/Response objects with full PHP type hints and fluent builders
- Smart Validation - Pre-request validation based on model capabilities
- Comprehensive Error Handling - Structured exceptions with retry detection and detailed error codes
- Laravel Integration - Facade, Dependency Injection, and Artisan command support
Requirements
- PHP: 8.4 or higher
- Laravel: 12.0 or higher
- Extensions:
json,curl
Installation
Install the package via Composer:
composer require 0xmergen/zai-laravel-sdk
Configuration
Publish the configuration file:
php artisan vendor:publish --tag=zai-sdk-config
Add your API key to your .env file:
ZAI_API_KEY=your_api_key_here
You can obtain an API key from https://api.z.ai
Optional Configuration
All configuration options in config/zai-sdk.php have sensible defaults:
# Override default API endpoints if needed ZAI_BASE_URL=https://api.z.ai/api/paas/v4/chat/completions ZAI_IMAGE_BASE_URL=https://api.z.ai/api/paas/v4/images/generations ZAI_OCR_BASE_URL=https://api.z.ai/api/paas/v4/layout_parsing # Default model for chat completion ZAI_DEFAULT_MODEL=glm-4.7 # Request timeout (seconds) ZAI_TIMEOUT=30 # Retry configuration ZAI_RETRY_TIMES=2 ZAI_RETRY_SLEEP=100
Usage
Chat Completion
Basic Chat
use Zai\LaravelSdk\Facades\ZaiSdk; use Zai\LaravelSdk\DataTransferObjects\ChatCompletionRequest; use Zai\LaravelSdk\Constants\ChatModel; $request = ChatCompletionRequest::make( model: ChatModel::GLM_4_7, messages: [ ['role' => 'user', 'content' => 'Explain quantum computing in simple terms.'] ] ); $response = ZaiSdk::chatCompletion($request); echo $response->content(); // "Quantum computing is a type of computation that..."
With Parameters
$request = ChatCompletionRequest::make(ChatModel::GLM_4_7, $messages) ->withTemperature(0.7) // 0.0 - 1.0 (default varies by model) ->withTopP(0.9) // 0.01 - 1.0 ->withMaxTokens(2000) // Maximum tokens to generate ->withUser('user-123'); // User identifier for tracking
Streaming Responses
$request = ChatCompletionRequest::make(ChatModel::GLM_4_7, $messages) ->withStreaming(); foreach (ZaiSdk::chatCompletionStream($request) as $chunk) { echo $chunk; // Stream each chunk as it arrives ob_flush(); flush(); }
Thinking Mode
Enable reasoning for complex tasks (supported models only):
$request = ChatCompletionRequest::make(ChatModel::GLM_4_7, $messages) ->withThinking('enabled'); // or 'disabled' $response = ZaiSdk::chatCompletion($request); // Access reasoning content echo $response->reasoningContent(); // Chain-of-thought reasoning echo $response->content(); // Final answer
Function / Tool Calling
$request = ChatCompletionRequest::make(ChatModel::GLM_4_7, $messages) ->withTools([ [ 'type' => 'function', 'function' => [ 'name' => 'get_weather', 'description' => 'Get the current weather for a location', 'parameters' => [ 'type' => 'object', 'properties' => [ 'location' => [ 'type' => 'string', 'description' => 'City name, e.g. San Francisco' ] ], 'required' => ['location'] ] ] ] ]) ->withToolChoice('auto'); $response = ZaiSdk::chatCompletion($request); if ($response->hasToolCalls()) { foreach ($response->toolCalls() as $toolCall) { echo $toolCall->function->name; // 'get_weather' print_r($toolCall->function->argumentsAsArray()); // ['location' => 'Tokyo'] } }
JSON Mode
Force JSON output:
$request = ChatCompletionRequest::make(ChatModel::GLM_4_7, $messages) ->withResponseFormat('json'); $response = ZaiSdk::chatCompletion($request); $data = json_decode($response->content(), true);
Image Generation
Basic Image Generation
use Zai\LaravelSdk\Facades\ZaiSdk; use Zai\LaravelSdk\DataTransferObjects\ImageGenerationRequest; use Zai\LaravelSdk\Constants\ImageModel; $request = ImageGenerationRequest::make( model: ImageModel::GLM_IMAGE, prompt: 'A serene mountain landscape at sunset, digital art style' ); $response = ZaiSdk::imageGeneration($request); echo $response->imageUrl(); // URL to the generated image (expires in 30 days)
Custom Size and Quality
$request = ImageGenerationRequest::make(ImageModel::GLM_IMAGE, $prompt) ->withQuality(ImageModel::QUALITY_HD) // 'hd' or 'standard' ->withSize('1728x960') // Width x Height ->withUser('user-123'); // Recommended sizes for glm-image: // 1280x1280, 1568x1056, 1056x1568, 1472x1088, 1088x1472, 1728x960, 960x1728
Multiple Images
$urls = $response->imageUrls(); // Array of all generated image URLs foreach ($urls as $url) { echo $url . "\n"; }
OCR / Layout Parsing
Extract structured data from PDFs and images:
use Zai\LaravelSdk\Facades\ZaiSdk; use Zai\LaravelSdk\DataTransferObjects\LayoutParsingRequest; use Zai\LaravelSdk\Constants\OcrModel; // From URL or base64 $request = LayoutParsingRequest::make('https://example.com/document.pdf') ->withPageRange(1, 5) // Pages 1-5 only ->withLayoutVisualization() // Get visual layout images ->withRequestId('unique-request-id') ->withUserId('user-123'); $response = ZaiSdk::layoutParsing($request); // Get Markdown format echo $response->md_results(); // Extract specific elements $tables = $response->tables(); // All tables across pages $images = $response->images(); // All detected images $texts = $response->allTextContent(); // All text elements // Page-specific access $elements = $response->pageElements(1); // Elements on page 1 echo "Page 1 has " . $response->elementCount(1) . " elements"; // Access individual element details foreach ($elements as $element) { if ($element->isTable()) { echo "Table at: " . json_encode($element->boundingBox()) . "\n"; echo "Content: " . $element->content . "\n"; } } // Document info echo "Total pages: " . $response->data_info->num_pages;
Dependency Injection
use Zai\LaravelSdk\ZaiSdk; use Zai\LaravelSdk\DataTransferObjects\ChatCompletionRequest; class ChatService { public function __construct( private readonly ZaiSdk $zai ) {} public function generateResponse(string $userMessage): string { $request = ChatCompletionRequest::make('glm-4.7', [ ['role' => 'user', 'content' => $userMessage] ]); $response = $this->zai->chatCompletion($request); return $response->content(); } }
Artisan Command
Check your SDK configuration:
php artisan zai:info
Output:
ZAI Laravel SDK
+---------+-----------------------------------------+
| Property | Value |
+---------+-----------------------------------------+
| Name | ZAI Laravel SDK |
| Version | 1.0.0 |
| API URL | https://api.z.ai/api/paas/v4/... |
| API Key | sk-abc123...xyz9 |
+---------+-----------------------------------------+
Available Models
Chat Models
| Model | Context | Max Tokens | Thinking | Tools | Vision |
|---|---|---|---|---|---|
glm-4.7 |
128K | 131,072 | ✅ | ✅ | ❌ |
glm-4.7-flash |
128K | 131,072 | ✅ | ✅ | ❌ |
glm-4.7-flashx |
128K | 131,072 | ✅ | ✅ | ❌ |
glm-4.6 |
200K | 131,072 | ✅ | ✅ | ✅ |
glm-4.6v-flash |
128K | 131,072 | ✅ | ✅ | ✅ |
glm-4.5 |
128K | 98,304 | ✅ | ✅ | ✅ |
glm-4.5-air |
128K | 98,304 | ✅ | ✅ | ❌ |
glm-4.5-x |
128K | 98,304 | ✅ | ✅ | ❌ |
glm-4.5-airx |
128K | 98,304 | ✅ | ✅ | ❌ |
glm-4.5-flash |
128K | 98,304 | ✅ | ✅ | ❌ |
glm-4-32b-0414-128k |
128K | 16,384 | ❌ | ❌ | ❌ |
Image Models
| Model | Default Size | Max Size | HD Quality |
|---|---|---|---|
glm-image |
1280x1280 | 2048x2048 | ✅ |
cogview-4-250304 |
1024x1024 | 2048x2048 | ❌ |
OCR Models
| Model | Supported Formats | Max Pages |
|---|---|---|
glm-ocr |
PDF, JPG, PNG | 100 |
Error Handling
The SDK provides structured exceptions for different error scenarios:
use Zai\LaravelSdk\Exceptions\{ ZaiApiException, ZaiAuthenticationException, ZaiRateLimitException, ZaiValidationException }; try { $response = ZaiSdk::chatCompletion($request); } catch (ZaiAuthenticationException $e) { // Invalid API key, expired token, etc. logger()->error('ZAI Authentication failed: ' . $e->getMessage()); } catch (ZaiRateLimitException $e) { // Rate limit exceeded, high concurrency, etc. logger()->warning('ZAI rate limit: ' . $e->getMessage()); // Check if retryable if ($e->isRetryable()) { sleep(1); // Retry request } } catch (ZaiValidationException $e) { // Invalid parameters, unsupported model, etc. logger()->error('Validation error: ' . $e->getMessage()); } catch (ZaiApiException $e) { // General API error logger()->error('ZAI error: ' . $e->getMessage()); logger()->error('Error code: ' . $e->errorCode); }
Testing
The package includes Pest tests. Run them with:
composer test
Or via Pest directly:
./vendor/bin/pest
Changelog
Please see CHANGELOG.md for recent changes.
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see LICENSE for more information.
Author
Made with ❤️ by 0xmergen
0xmergen/zai-laravel-sdk 适用场景与选型建议
0xmergen/zai-laravel-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 82 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「sdk」 「OCR」 「laravel」 「automation」 「ai」 「image-generation」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 0xmergen/zai-laravel-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 0xmergen/zai-laravel-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 0xmergen/zai-laravel-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The Best Image Ocr SDK For BAT.
The Best Image Ocr SDK For BAT.
腾讯 OCR SDK
Integration of tesseract bridge via FFI and CLI
Alfabank REST API integration
Baidu OCR by smallerfan
统计信息
- 总下载量: 82
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-07