Sdcb.SparkDesk
2.0.0
Prefix Reserved
See the version list below for details.
dotnet add package Sdcb.SparkDesk --version 2.0.0
NuGet\Install-Package Sdcb.SparkDesk -Version 2.0.0
<PackageReference Include="Sdcb.SparkDesk" Version="2.0.0" />
paket add Sdcb.SparkDesk --version 2.0.0
#r "nuget: Sdcb.SparkDesk, 2.0.0"
// Install Sdcb.SparkDesk as a Cake Addin #addin nuget:?package=Sdcb.SparkDesk&version=2.0.0 // Install Sdcb.SparkDesk as a Cake Tool #tool nuget:?package=Sdcb.SparkDesk&version=2.0.0
Sdcb.SparkDesk
Sdcb.SparkDesk
is an unofficial open-source project that provides a .NET client for SparkDesk WebSocket API(https://console.xfyun.cn/services/cbm). Now, it supports the ModelVersion allowing users to choose between different versions of models including V2 model. The upstream document is at: https://www.xfyun.cn/doc/spark/Guide.html
This project can be used to build chatbots and virtual assistants that can communicate with users in natural language.
Sdcb.SparkDesk
是星火大模型WebSocket API(https://console.xfyun.cn/services/cbm)的非官方开源.NET客户端。现在,它支持ModelVersion,允许用户选择不同版本的模型,包括V2模型。
Features
- Provides a .NET client for the SparkDesk API
- Supports both synchronous and asynchronous communication
- Implements streaming APIs for real-time communication
- Provides a simple and intuitive API for chatbot development
- Supports ModelVersion allowing users to choose between different versions of models
Installation
Sdcb.SparkDesk
can be installed using NuGet. To install the package, run the following command in the Package Manager Console:
Install-Package Sdcb.SparkDesk
Usage
To use Sdcb.SparkDesk, you need to create an instance of the SparkDeskClient
class. You can create the client by passing your SparkDesk API credentials to the constructor:
SparkDeskClient client = new SparkDeskClient(appId, apiKey, apiSecret);
Example 1: Chatting with a virtual assistant (V1 model)
The following example shows how to use the ChatAsync
method to chat with a virtual assistant:
SparkDeskClient client = new SparkDeskClient(appId, apiKey, apiSecret);
ChatResponse response = await client.ChatAsync(ModelVersion.V1_5, new ChatMessage[]
{
ChatMessage.FromUser("系统提示:你叫张三,一名5岁男孩,你在金色摇篮幼儿园上学,你的妈妈叫李四,是一名工程师"),
ChatMessage.FromUser("你好小朋友,我是周老师,你在上学?"),
});
Console.WriteLine(response.Text);
Example 2: Chatting with a virtual assistant using streaming API (V2 model)
The following example shows how to use the ChatAsStreamAsync
method to chat with a virtual assistant using V2 model and streaming API:
SparkDeskClient client = new SparkDeskClient(appId, apiKey, apiSecret);
await foreach (StreamedChatResponse msg in client.ChatAsStreamAsync(ModelVersion.V2, new ChatMessage[] { ChatMessage.FromUser("湖南的省会在哪?") }, new ChatRequestParameters
{
ChatId = "test",
MaxTokens = 20,
Temperature = 0.5f,
TopK = 4,
}))
{
Console.WriteLine(msg);
}
Example 3: Chatting with a virtual assistant using streaming API and callback (V1.5 model)
The following example shows how to use the ChatAsStreamAsync
method to chat with a virtual assistant using V1.5 model, streaming API and callback:
SparkDeskClient client = new SparkDeskClient(appId, apiKey, apiSecret);
StringBuilder sb = new();
TokensUsage usage = await client.ChatAsStreamAsync(ModelVersion.V1_5, new ChatMessage[]
{
ChatMessage.FromUser("1+1=?"),
ChatMessage.FromAssistant("1+1=3"),
ChatMessage.FromUser("不对啊,请再想想?")
}, s => sb.Append(s), uid: "zhoujie");
string realResponse = sb.ToString();
Console.WriteLine(realResponse);
Example 4: A console chatting bot using streaming API (V1.5 model):
The following example shows how to self track the conversation history and chat with a virtual assistant using streaming API and V1.5 model:
SparkDeskClient client = new SparkDeskClient(appId, apiKey, apiSecret);
List<ChatMessage> conversation = new List<ChatMessage>();
while (true)
{
string? prompt = Console.ReadLine();
if (prompt == null || prompt == "q")
{
break;
}
conversation.Add(ChatMessage.FromUser(prompt));
Console.WriteLine($"> {prompt}");
StringBuilder resp = new StringBuilder();
await foreach (string c in client.ChatAsStreamAsync(ModelVersion.V1_5, conversation.ToArray()))
{
resp.Append(resp);
Console.Write(c);
}
Console.WriteLine();
conversation.Add(ChatMessage.FromAssistant(resp.ToString()));
}
License
Sdcb.SparkDesk is licensed under the MIT License. See the LICENSE.txt file for more information.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Text.Json (>= 7.0.3)
-
net6.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Sdcb.SparkDesk:
Package | Downloads |
---|---|
AIDotNet.SparkDesk
AI DotNet API |
|
BotSharp.Plugin.SparkDesk
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Sdcb.SparkDesk:
Repository | Stars |
---|---|
SciSharp/BotSharp
AI Multi-Agent Framework in .NET
|
|
maker-community/ElectronBot.DotNet
一个为ElectronBot机器人和瀚文键盘(HelloWorldKeyboard)开发的上位机软件(包含机器人USB操作SDK和瀚文键盘HID操作SDK),采用Windows App SDK框架编写界面。 A host computer software developed for ElectronBot robots (including robot USB operation SDK), using the Windows App SDK framework to write UI.
|