How to apply streaming in azure openai dotnet web application?

2024-09-06 04:44

本文主要是介绍How to apply streaming in azure openai dotnet web application?,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题意:"如何在 Azure OpenAI 的 .NET Web 应用程序中应用流式处理?"

问题背景:

I want to create a web api backend that stream openai completion responses.

"我想创建一个 Web API 后端,用于流式传输 OpenAI 的完成响应。"

How can I apply the following solution to a web api action in controller?

"如何将以下解决方案应用到控制器中的 Web API 操作?"

var client = new OpenAIClient(nonAzureOpenAIApiKey, new OpenAIClientOptions());
var chatCompletionsOptions = new ChatCompletionsOptions()
{DeploymentName = "gpt-3.5-turbo", // Use DeploymentName for "model" with non-Azure clientsMessages ={new ChatRequestSystemMessage("You are a helpful assistant. You will talk like a pirate."),new ChatRequestUserMessage("Can you help me?"),new ChatRequestAssistantMessage("Arrrr! Of course, me hearty! What can I do for ye?"),new ChatRequestUserMessage("What's the best way to train a parrot?"),}
};await foreach (StreamingChatCompletionsUpdate chatUpdate in client.GetChatCompletionsStreaming(chatCompletionsOptions))
{if (chatUpdate.Role.HasValue){Console.Write($"{chatUpdate.Role.Value.ToString().ToUpperInvariant()}: ");}if (!string.IsNullOrEmpty(chatUpdate.ContentUpdate)){Console.Write(chatUpdate.ContentUpdate);}
}

问题解决:

You can simply wrap your code inside the controller

"您可以简单地将代码包裹在控制器内。"

using Microsoft.AspNetCore.Mvc;
using OpenAI;
using OpenAI.Chat;
using System.Collections.Generic;
using System.Threading.Tasks;[ApiController]
[Route("[controller]")]
public class ChatController : ControllerBase
{[HttpGet]public async Task<ActionResult<List<string>>> GetChatCompletions(){var client = new OpenAIClient(nonAzureOpenAIApiKey, new OpenAIClientOptions());var chatCompletionsOptions = new ChatCompletionsOptions(){DeploymentName = "gpt-3.5-turbo",Messages ={new ChatRequestSystemMessage("You are a helpful assistant. You will talk like a pirate."),new ChatRequestUserMessage("Can you help me?"),new ChatRequestAssistantMessage("Arrrr! Of course, me hearty! What can I do for ye?"),new ChatRequestUserMessage("What's the best way to train a parrot?"),}};var responses = new List<string>();await foreach (StreamingChatCompletionsUpdate chatUpdate in client.GetChatCompletionsStreaming(chatCompletionsOptions)){if (chatUpdate.Role.HasValue){responses.Add($"{chatUpdate.Role.Value.ToString().ToUpperInvariant()}: ");}if (!string.IsNullOrEmpty(chatUpdate.ContentUpdate)){responses.Add(chatUpdate.ContentUpdate);}}return Ok(responses);}
}

If you don't want to hardcode the message and pass that as a body then you can do something like this

"如果您不想将消息硬编码并作为主体传递,那么您可以这样做"

using Microsoft.AspNetCore.Mvc;
using OpenAI;
using OpenAI.Chat;
using System.Collections.Generic;
using System.Threading.Tasks;[ApiController]
[Route("[controller]")]
public class ChatController : ControllerBase
{public class ChatRequest{public List<string> Messages { get; set; }}[HttpPost]public async Task<ActionResult<List<string>>> PostChatCompletions([FromBody] ChatRequest request){var client = new OpenAIClient(nonAzureOpenAIApiKey, new OpenAIClientOptions());var chatCompletionsOptions = new ChatCompletionsOptions(){DeploymentName = "gpt-3.5-turbo",Messages = new List<ChatRequestMessage>()};foreach (var message in request.Messages){chatCompletionsOptions.Messages.Add(new ChatRequestUserMessage(message));}var responses = new List<string>();await foreach (StreamingChatCompletionsUpdate chatUpdate in client.GetChatCompletionsStreaming(chatCompletionsOptions)){if (chatUpdate.Role.HasValue){responses.Add($"{chatUpdate.Role.Value.ToString().ToUpperInvariant()}: ");}if (!string.IsNullOrEmpty(chatUpdate.ContentUpdate)){responses.Add(chatUpdate.ContentUpdate);}}return Ok(responses);}
}

Remember the above implementation of the API does not support streaming responses. It waits for all the chat completions to be received from the OpenAI API, then sends them all at once to the client.

"请记住,上述 API 实现不支持流式响应。它会等待从 OpenAI API 接收到所有聊天完成后,再将它们一次性发送给客户端。"

Streaming responses to the client as they are received from the OpenAI API would require a different approach. This could be achieved using Server-Sent Events (SSE) or a similar technology, but it's important to note that not all clients and network environments support these technologies.

"将从 OpenAI API 接收到的响应流式传输给客户端需要采用不同的方法。这可以通过使用服务器发送事件 (SSE) 或类似技术来实现,但需要注意的是,并非所有客户端和网络环境都支持这些技术。"

Here's a simplified example of how you could implement this using Server-Sent Events in ASP.NET Core:

"以下是一个使用服务器发送事件 (SSE) 在 ASP.NET Core 中实现此功能的简化示例:"

[HttpPost]
public async Task PostChatCompletions([FromBody] ChatRequest request)
{var client = new OpenAIClient(nonAzureOpenAIApiKey, new OpenAIClientOptions());var chatCompletionsOptions = new ChatCompletionsOptions(){DeploymentName = "gpt-3.5-turbo",Messages = new List<ChatRequestMessage>()};foreach (var message in request.Messages){chatCompletionsOptions.Messages.Add(new ChatRequestUserMessage(message));}Response.Headers.Add("Content-Type", "text/event-stream");await foreach (StreamingChatCompletionsUpdate chatUpdate in client.GetChatCompletionsStreaming(chatCompletionsOptions)){if (chatUpdate.Role.HasValue){await Response.WriteAsync($"data: {chatUpdate.Role.Value.ToString().ToUpperInvariant()}: \n\n");}if (!string.IsNullOrEmpty(chatUpdate.ContentUpdate)){await Response.WriteAsync($"data: {chatUpdate.ContentUpdate}\n\n");}}
}

这篇关于How to apply streaming in azure openai dotnet web application?的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1141035

相关文章

Kotlin 作用域函数apply、let、run、with、also使用指南

《Kotlin作用域函数apply、let、run、with、also使用指南》在Kotlin开发中,作用域函数(ScopeFunctions)是一组能让代码更简洁、更函数式的高阶函数,本文将... 目录一、引言:为什么需要作用域函数?二、作用域函China编程数详解1. apply:对象配置的 “流式构建器”最

JSON Web Token在登陆中的使用过程

《JSONWebToken在登陆中的使用过程》:本文主要介绍JSONWebToken在登陆中的使用过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录JWT 介绍微服务架构中的 JWT 使用结合微服务网关的 JWT 验证1. 用户登录,生成 JWT2. 自定义过滤

一文教你如何将maven项目转成web项目

《一文教你如何将maven项目转成web项目》在软件开发过程中,有时我们需要将一个普通的Maven项目转换为Web项目,以便能够部署到Web容器中运行,本文将详细介绍如何通过简单的步骤完成这一转换过程... 目录准备工作步骤一:修改​​pom.XML​​1.1 添加​​packaging​​标签1.2 添加

web网络安全之跨站脚本攻击(XSS)详解

《web网络安全之跨站脚本攻击(XSS)详解》:本文主要介绍web网络安全之跨站脚本攻击(XSS)的相关资料,跨站脚本攻击XSS是一种常见的Web安全漏洞,攻击者通过注入恶意脚本诱使用户执行,可能... 目录前言XSS 的类型1. 存储型 XSS(Stored XSS)示例:危害:2. 反射型 XSS(Re

SpringBoot快速接入OpenAI大模型的方法(JDK8)

《SpringBoot快速接入OpenAI大模型的方法(JDK8)》本文介绍了如何使用AI4J快速接入OpenAI大模型,并展示了如何实现流式与非流式的输出,以及对函数调用的使用,AI4J支持JDK8... 目录使用AI4J快速接入OpenAI大模型介绍AI4J-github快速使用创建SpringBoot

解决JavaWeb-file.isDirectory()遇到的坑问题

《解决JavaWeb-file.isDirectory()遇到的坑问题》JavaWeb开发中,使用`file.isDirectory()`判断路径是否为文件夹时,需要特别注意:该方法只能判断已存在的文... 目录Jahttp://www.chinasem.cnvaWeb-file.isDirectory()遇

JavaWeb-WebSocket浏览器服务器双向通信方式

《JavaWeb-WebSocket浏览器服务器双向通信方式》文章介绍了WebSocket协议的工作原理和应用场景,包括与HTTP的对比,接着,详细介绍了如何在Java中使用WebSocket,包括配... 目录一、概述二、入门2.1 POM依赖2.2 编写配置类2.3 编写WebSocket服务2.4 浏

JAVA系统中Spring Boot应用程序的配置文件application.yml使用详解

《JAVA系统中SpringBoot应用程序的配置文件application.yml使用详解》:本文主要介绍JAVA系统中SpringBoot应用程序的配置文件application.yml的... 目录文件路径文件内容解释1. Server 配置2. Spring 配置3. Logging 配置4. Ma

Spring常见错误之Web嵌套对象校验失效解决办法

《Spring常见错误之Web嵌套对象校验失效解决办法》:本文主要介绍Spring常见错误之Web嵌套对象校验失效解决的相关资料,通过在Phone对象上添加@Valid注解,问题得以解决,需要的朋... 目录问题复现案例解析问题修正总结  问题复现当开发一个学籍管理系统时,我们会提供了一个 API 接口去

使用IntelliJ IDEA创建简单的Java Web项目完整步骤

《使用IntelliJIDEA创建简单的JavaWeb项目完整步骤》:本文主要介绍如何使用IntelliJIDEA创建一个简单的JavaWeb项目,实现登录、注册和查看用户列表功能,使用Se... 目录前置准备项目功能实现步骤1. 创建项目2. 配置 Tomcat3. 项目文件结构4. 创建数据库和表5.