Unity之使用火山引擎实现文字提问流式回复

文字提问

设置参数apiKey

调用Request方法,传入对话内容

注册事件,接收回复内容

csharp 复制代码
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Networking;
/// <summary>
/// 文本提问
/// </summary>
public class TextQuestions : MonoBehaviour
{
    string baseUrl = "https://ark.cn-beijing.volces.com/api/v3/chat/completions";
    string apiKey = "";

    [Header("模型")]
    [SerializeField] string model = "doubao-seed-2-0-code-preview-260215";
    [Header("深度思考")]
    [SerializeField] string thinking = "disabled";
    [Header("模型回答最大长度(单位token)")]
    [SerializeField] int maxTokens = 4096;
    [Header("思考消耗")]
    [SerializeField] string reasoningEffort = "minimal";

    public event Action<string, bool> onReceive;
    public event Action onCompleted;
    public event Action OnError;

    void OnReceive(string content)
    {
        var respone = JsonUtility.FromJson<ResponeChatMessage>(content);
        onReceive?.Invoke(respone.choices[0].delta.content,
        respone.choices[0].finish_reason == "stop");
    }

    void OnCompleted()
    {
        onCompleted?.Invoke();
    }

    public void Request(List<Message> messages)
    {
        RequestChat requestMessages = new RequestChat
        {
            messages = messages,
            model = model,
            thinking = new ThinkingType()
            {
                type = thinking,
            },
            max_tokens = maxTokens,
            reasoning_effort = reasoningEffort,
        };
        string jsonData = JsonUtility.ToJson(requestMessages);
        StartCoroutine(PostChat(jsonData));
    }

    IEnumerator PostChat(string jsonData)
    {
        using (UnityWebRequest request = new UnityWebRequest(baseUrl, UnityWebRequest.kHttpVerbPOST))
        {
            byte[] bodyRaw = System.Text.Encoding.UTF8.GetBytes(jsonData);
            request.uploadHandler = new UploadHandlerRaw(bodyRaw);

            var tTSDownload = new TTSDownload();
            tTSDownload.OnObjectReceived += OnReceive;
            tTSDownload.OnComplete += OnCompleted;

            request.downloadHandler = tTSDownload;

            request.SetRequestHeader("Content-Type", "application/json");
            request.SetRequestHeader("Authorization", "Bearer " + apiKey);
            yield return request.SendWebRequest();
            if (request.result != UnityWebRequest.Result.Success)
            {
                Debug.LogError("请求失败:" + request.error);
                OnError?.Invoke();
            }

            tTSDownload.OnObjectReceived -= OnReceive;
            tTSDownload.OnComplete -= OnCompleted;
        }
    }
}

[Serializable]
public class RequestChat
{
    public string model;
    public List<Message> messages;
    public ThinkingType thinking;
    public int max_tokens;
    public string reasoning_effort;
    public bool stream = true;
}
[Serializable]
public class ThinkingType
{
    public string type;
}

[Serializable]
public class Message
{
    public string role;
    public string content;
    public string thinking;
}

[Serializable]
public class ResponeChatMessage
{
    public Choices[] choices;
}

[Serializable]
public class Choices
{
    public MessageDelta delta;
    public string finish_reason;
    public int index;
}

[Serializable]
public class MessageDelta
{
    public string content;
    public string role;
}

拓展DownloadHandler

csharp 复制代码
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
using UnityEngine.Networking;

public class TTSDownload : DownloadHandlerScript
{
    private StringBuilder buffer = new StringBuilder();
    public event Action<string> OnObjectReceived;
    public event Action OnComplete;

    public TTSDownload() : base(new byte[4096]) { }

    protected override bool ReceiveData(byte[] data, int dataLength)
    {
        string chunk = Encoding.UTF8.GetString(data, 0, dataLength);
        buffer.Append(chunk);
        ProcessBuffer();
        return true;
    }

    private void ProcessBuffer()
    {
        string content = buffer.ToString();
        int splitStartIndex = -1;
        int braceCount = 0;
        int lastProcessed = 0;
        for (int i = 0; i < content.Length; i++)
        {
            if (content[i] == '{')
            {
                if (braceCount == 0) splitStartIndex = i;
                braceCount++;
            }
            else if (content[i] == '}')
            {
                braceCount--;
                if (braceCount == 0 && splitStartIndex != -1)
                {
                    string obj = content.Substring(splitStartIndex, i - splitStartIndex + 1);
                    OnObjectReceived?.Invoke(obj);
                    splitStartIndex = -1;
                    lastProcessed = i + 1;
                }
            }
        }

        if (lastProcessed > 0)
            buffer.Remove(0, lastProcessed);
    }

    protected override void CompleteContent()
    {
        OnComplete?.Invoke();
    }
}
相关推荐
2601_9618752425 分钟前
法考资料全套2026|客观题|主观题|资料已整理
阿里云·云计算·腾讯云·azure·七牛云存储·csdn开发云·火山引擎
auccy3 小时前
Unity Sprite 添加法线贴图
unity·贴图·normal
一锅炖出任易仙3 小时前
创梦汤锅学习日记day32
学习·ai·游戏引擎
mxwin7 小时前
次世代角色 PBR 贴图制作 + Unity URP 接入 极简流程图
unity·流程图·贴图·shader
mxwin7 小时前
Unity URP 法线贴图如何生成 用什么工具创建
unity·游戏引擎·贴图
器灵科技8 小时前
周星驰 × 火山引擎官宣!Seedance 正版 IP 二创正式上线
人工智能·阿里云·ai·github·火山引擎
mxwin18 小时前
Unity URP 法线贴图色彩空间、编码与解码
unity·游戏引擎·贴图·shader
玖玥拾20 小时前
Cocos学习笔记:项目框架搭建与异步加载进度
游戏引擎·cocos2d
mxwin21 小时前
Unity Shader URP:将法线可视化,便于调试
unity·游戏引擎·shader
蓝黑墨水1 天前
unity相关链接
unity·游戏引擎