php调用字节火山豆包大模型示例代码

代码语言:php

所属分类:其他

代码描述:php调用字节火山豆包大模型示例代码,豆包模型的apikey是动态获取的,具体教程看这个:https://blog.bfw.wiki/user1/17165230845298730036.html

代码标签: php 调用 字节 火山 豆包 大模型 示例 代码

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

<?php
//具体教程请看这个:https://blog.bfw.wiki/user1/17165230845298730036.html
// 初始化cURL会话
$curl = curl_init();

// 设置cURL选项
curl_setopt($curl, CURLOPT_URL, "https://ark.cn-beijing.volces.com/api/v3/chat/completions");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode([
    "model" => "$YOUR_ENDPOINT_ID",
    "messages" => [
        [
            "role" => "system",
            "content" => "You are a helpful assistant."
        ],
      .........完整代码请登录后点击上方下载按钮下载查看

网友评论0