AllInAI.Sharp.API 1.1.3

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.3
NuGet\Install-Package AllInAI.Sharp.API -Version 1.1.3
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.3" />
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.3
#r "nuget: AllInAI.Sharp.API, 1.1.3"
#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.3

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

AllInAI.Sharp.API

English | 中文简介

AllInAI.Sharp.API is an SDK that calls language models from various platforms, and it helps users quickly integrate with major models. It has integrated OpenAI, chatGLM, Wenxin Qianfan, Synonymous Qianwen, stable-diffusion, etc. It supports setting reverse proxies and streaming interfaces. The AllInAI SDK integrates unified input and output parameters in the chat and image interfaces, making it easy to call.

Completed models include:

  • OpenAI
  • chatGLM
  • Wenxin Qianfan
  • Synonymous Qianwen
  • stable-diffusion

Usage example

Initiate a chat

  1. Set the basic configurations:

    • key: The model secret key
    • BaseUrl: The proxy address
    • AIType: The model type, corresponds to the Enums.AITypeEnum enumeration
  2. Call the API

  3. 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);
  1. 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);

How to contribute

  1. Fork & Clone
  2. Create a branch named Feature/name(your github id)/issuexxx
  3. Commit with a commit message, like "solve issue xxx, add xxx"
  4. Create a Pull Request If you would like to contribute, feel free to submit Pull Requests or give us Issues.
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 271 1/25/2024
1.2.2-preview2 234 1/24/2024
1.2.2-preview 273 1/10/2024
1.2.1 394 1/9/2024
1.2.0 344 12/27/2023
1.1.8 355 12/22/2023
1.1.7 331 12/22/2023
1.1.6 390 12/12/2023
1.1.5 336 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