zhiqiangwong / gpt-zmide-server-sdk-php
There is no license information available for the latest version (1.2) of this package.
SDK
1.2
2023-03-31 06:23 UTC
Requires
- php: >=7.0.15
- guzzlehttp/guzzle: >=6.3
This package is auto-updated.
Last update: 2025-06-29 02:08:30 UTC
README
安装
composer require zhiqiangwong/gpt-zmide-server-sdk-php
使用
$chat = new ChatGpt('sk-cttbFUeDumoGQBuYMFFTOsbGXydxvDpkhgzhwrgDzWoCcZcB', 'sxqzNfBlOrMonqnsEqLNkjJUsDmADEfX', [
'apiHost' => 'http://host.docker.internal:8091', //设置请求 host
'encrypt' => true, //设置 body 加密传输
]);
$response = $chat->debug(1)->translate('你好世界');