Requirement
PHP >= 7.0
Composer
ext-curl 拓展
ext-json 拓展
安装
composer require justmd5/tencent-ai
使用$config = [
'appKey' => '1106944xxx',
'appSecret' => 'dsgnbnWnX8Yxxxxxx',
'debug' => 0,//1 show debug info
];
$AI = new \Justmd5\TencentAi\Ai($config);
接口调用示例智能闲聊 url: https://api.ai.qq.com/fcgi-bin/nlp/nlp_textchat 请求示例如下:
$params = [
'question'=>'腾讯人工智能',
'session'=>123,
];
try {
dd($AI->nlp->request('textchat', $params));
} catch (\Justmd5\TencentAi\Exception\NotFoundException $e) {
dd($e);
}
https://github.com/justmd5/tencent-ai