php调用腾讯混元大模型api示例代码

代码语言:php

所属分类:其他

代码描述:php调用腾讯混元大模型api示例代码

代码标签: php 调用 腾讯 混元 大模型 api 示例 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php
//安装依赖composer require tencentcloud/tencentcloud-sdk-php
//或者
// composer require tencentcloud/common
// composer require tencentcloud/hunyuan
//密钥创建 https://console.cloud.tencent.com/hunyuan/start
require '/data/wwwroot/default/lib/php/vendor/autoload.php'; // 确保你安装了腾讯云 SDK 并通过 composer 引入

use TencentCloud\Common\Credential;
use TencentCloud\Common\Profile\ClientProfile;
use TencentCloud\Common\Profile\HttpProfile;
use TencentCloud\Common\Exception\TencentCloudSDKException;
use TencentCloud\Hunyuan\V20230901\HunyuanClient;
use TencentCloud\Hunyuan\V20230901\Models\ChatCompletionsRequest;

function streamProcessResult($result)
{
    echo $result;
}

try {
    // 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
    // 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305
    // 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
    $cred = new Credential("SecretId", "SecretKey");
    // 实例化一个http选项,可选的,没有特殊需求可以跳过
    $httpProfile = new HttpProfile();
    $httpProfile->setEndpoint("hunyuan.tencentcloudapi.com");

    // 实例化一个client选项,可选的,没有特殊需求可以跳过
    $clientProfile = new ClientProfile();
    $clientProfile->setHttpProfile($httpProfile);
    // 实例化要请求产品的client对象,clientProfile是可选的
    $client =.........完整代码请登录后点击上方下载按钮下载查看

网友评论0