chatgpt的接口是一个标准的http请求,请求的url为
POST https://api.openai.com/v1/chat/completions
官方的接口文档地址为:https://platform.openai.com/docs/api-reference/chat/create
Example request
curl https://api.openai.com/v1/chat/comp…
1 文本格式
using System;
namespace Legalsoft.Truffer { /// <summary> /// 三次样条插值 /// Cubic Spline Interpolation /// Cubic spline interpolation object. Construct with x and y vectors, and /// (optionally) values of the first…