guanhui07 / open-ai
OpenAI API Client in PHP
Fund package maintenance!
orhanerday
Requires
- php: >=7.1
- ext-curl: *
This package is auto-updated.
Last update: 2024-10-31 00:34:16 UTC
README
为何 fork
此库而不是向原项目发起 PR
,主要是是作者的响应时间太长,一个非常简单的 PR
经常 1-2
周的时间没有任何回复。
我们需要快速验证迭代,后续会抽时间提交给 orhanerday/open-ai
https://github.com/orhanerday/open-ai?tab=readme-ov-file#chat-as-known-as-chatgpt-api
改进
对 orhanerday/open-ai
库做了一些改进,包括如下内容:
- 支持了获取
curl
底层错误码,在出现网络底层的问题后可以根据错误信息排查问题 - 支持设置
HTTP
版本,使用方法$openai->setHttpVersion(2)
,通过设置HTTP2
协议可以绕过 Nginx 的proxy cache
- 改进了
setBaseUrl()
方法,原库是硬编码写死了api.openai.com
,发送请求前通过字符串替换设置BaseUrl
,不是很优雅 - 改进了
chat stream
的实现,原库直接使用了WRITE_FUNCTION
,应用层需要分割Chunks
并手工解析Event-Stream
消息 - 兼容php7
使用
composer require guanhui07/open-ai
实例
define('BASE_PATH', dirname(__DIR__)); require BASE_PATH . '/vendor/autoload.php'; use SwooleAi\OpenAi\OpenAi; $open_ai = new OpenAi('test'); $open_ai->setBaseURL('https://api.openai.com/'); $messages[] = ["role" => "system", "content" => "You are a helpful assistant."]; $messages[] = ["role" => "user", "content" => "Who won the world series in 2020?"]; $messages[] = ["role" => "assistant", "content" => "The Los Angeles Dodgers won the World Series in 2020."]; $messages[] = ["role" => "user", "content" => "Where was it played?"]; $complete = $open_ai->chat([ 'model' => 'gpt-3.5-turbo', 'messages' => $messages ], function ($curl_info, $data) use (&$txt) { if ($data !== '[DONE]') { $json = json_decode($data, true); $txt .= $json['choices'][0]['delta']['content']; } }); var_dump($complete); if ($complete) { var_dump($txt); } else { var_dump($open_ai->getError(), $open_ai->getErrno() === CURLE_COULDNT_CONNECT); }
代理
在中国无法直接访问 OpenAI
服务器,可以设置代理。
$open_ai = new OpenAi('test'); $open_ai->setProxy('socks5h://127.0.0.1:1080');
socks5h://
:socks5
代理并且在对端进行DNS
解析(推荐使用)socks5://
:socks5
代理并且在本地进行DNS
解析http://
:HTTP
代理
我的其他包:
https://github.com/guanhui07/dcr 借鉴Laravel实现的 PHP Framework ,FPM模式、websocket使用的workerman、支持容器、PHP8特性attributes实现了路由注解、中间件注解、Laravel Orm等特性
https://github.com/guanhui07/redis Swoole模式下 Redis连接池
https://github.com/guanhui07/facade facade、门面 fpm模式下可使用
https://github.com/guanhui07/dcr-swoole-crontab 基于swoole实现的crontab秒级定时任务
https://github.com/guanhui07/database 基于 illuminate/database 做的连接池用于适配Swoole的协程环境
https://github.com/guanhui07/dcr-swoole 高性能PHP Framework ,Cli模式,基于Swoole实现,常驻内存,协程框架,支持容器、切面、PHP8特性attributes实现了路由注解、中间件注解、支持Laravel Orm等特性
https://github.com/guanhui07/open-ai chatgpt sdk
https://github.com/guanhui07/geohash geohash附近的人