ChatGPT 可以帮助润色学术论文,助力搞科研! 论文 Rebuttal, Review 过程中可能使用的一个 Prompt:
Prompt:I want you to act as an English translator, spelling corrector and improver. I will speak to you in any language…
1.新建一个.NetCore WebApi项目,演示是基于.Net Core 6 2.添加Nuget引用 OpenAi 3.新建一个控制器 ChatGPTController using Microsoft.AspNetCore.Mvc;
using OpenAI_API;
using OpenAI_API.Completions;namespace ChatGPTApi.Controllers
{public class ChatGPTController : …