jormin / laravel-tuling
图灵APi集成
v1.0.2
2017-10-15 18:27 UTC
Requires
- php: ~5.6|~7.0
- guzzlehttp/guzzle: ^6.3
- illuminate/support: ~5.1
Requires (Dev)
- phpunit/phpunit: >=5.4.3
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2024-11-05 19:45:29 UTC
README
集成了 图灵 官方的Api接口。
安装
-
安装包文件
$ composer require jormin/laravel-tuling
配置
-
注册 ServiceProvider:
Jormin\TuLing\TuLingServiceProvider::class,
-
创建配置文件:
php artisan vendor:publish
执行命令后会在
config
目录下生成本扩展配置文件:laravel-tuling.php
。 -
在
.env
文件中增加如下配置:TULING_API_KEY
:图灵ApiKey。
使用
-
获取自动回复信息
$message = '西安天气'; $userID = '用户ID'; $location = '陕西省西安市雁塔区'; Jormin\TuLing\TuLing::chat($message, $userID, $location);
消息字段详细见 图灵官方文档.
License
The MIT License (MIT). Please see License File for more information.