AllInAI.Sharp.API 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AllInAI.Sharp.API --version 1.1.0
NuGet\Install-Package AllInAI.Sharp.API -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AllInAI.Sharp.API" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AllInAI.Sharp.API --version 1.1.0
#r "nuget: AllInAI.Sharp.API, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AllInAI.Sharp.API as a Cake Addin
#addin nuget:?package=AllInAI.Sharp.API&version=1.1.0

// Install AllInAI.Sharp.API as a Cake Tool
#tool nuget:?package=AllInAI.Sharp.API&version=1.1.0

AllInAI.Sharp.API

一款调用各大平台语言模型的SDK,能帮助使用者快速对接各大模型。已整合OpenAI,chatGLM,文心千帆,同义千问,stable-diffusion 等 支持设置反向代理 AllInAI SDK 在聊天和图片接口中整合统一的入参和出参。方便调用。

已完成模型有

  • OpenAI
  • chatGLM
  • 文心千帆
  • 同义千问
  • stable-diffusion

使用文档使用示例

示例项目为:https://github.com/raokun/AllInAI.Sharp.API.Sample

使用范例

发起聊天

1.设置基础配置: key -- 模型的秘钥key BaseUrl -- 代理地址 AIType -- 模型类型,对应枚举Enums.AITypeEnum

2.调用接口 1.chat

AuthOption authOption = new AuthOption() { Key = "sk-***", BaseUrl = "https://api.openai.com", AIType = Enums.AITypeEnum.OpenAi };

ChatService chatService = new ChatService(authOption);
CompletionReq completionReq = new CompletionReq();
List<MessageDto> messages = new List<MessageDto>();
messages.Add(new MessageDto() { Role = "user", Content = "Hello!" });
completionReq.Model = "gpt-3.5-turbo";
completionReq.Messages = messages;
CompletionRes completionRes = await chatService.Completion(completionReq);

2.image

AuthOption authOption = new AuthOption() {BaseUrl = "http://43.134.164.127:77", AIType = Enums.AITypeEnum.SD };
ImgService imgService = new ImgService(authOption);
Txt2ImgReq imgReq = new Txt2ImgReq();
imgReq.Steps = 20;
imgReq.Size = "1024x1024";
imgReq.N = 1;
imgReq.Prompt = "kitty";
imgReq.ResponseFormat = "b64_json";
ImgRes imgRes = await imgService.Txt2Img(imgReq);

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.2-preview3 272 1/25/2024
1.2.2-preview2 234 1/24/2024
1.2.2-preview 273 1/10/2024
1.2.1 408 1/9/2024
1.2.0 344 12/27/2023
1.1.8 356 12/22/2023
1.1.7 331 12/22/2023
1.1.6 390 12/12/2023
1.1.5 341 12/8/2023
1.1.4 352 12/7/2023
1.1.3 389 12/4/2023
1.1.2 343 12/4/2023
1.1.2-preview2 346 12/4/2023
1.1.2-preview1 348 12/4/2023
1.1.1 366 11/30/2023
1.1.0 368 11/30/2023
1.1.0-preview1.0 39 11/30/2023
1.0.1-preview.1 58 11/29/2023
1.0.0 361 11/29/2023