Cnblogs.SemanticKernel.Connectors.DashScope 0.3.2

dotnet add package Cnblogs.SemanticKernel.Connectors.DashScope --version 0.3.2
NuGet\Install-Package Cnblogs.SemanticKernel.Connectors.DashScope -Version 0.3.2
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="Cnblogs.SemanticKernel.Connectors.DashScope" Version="0.3.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cnblogs.SemanticKernel.Connectors.DashScope --version 0.3.2
#r "nuget: Cnblogs.SemanticKernel.Connectors.DashScope, 0.3.2"
#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 Cnblogs.SemanticKernel.Connectors.DashScope as a Cake Addin
#addin nuget:?package=Cnblogs.SemanticKernel.Connectors.DashScope&version=0.3.2

// Install Cnblogs.SemanticKernel.Connectors.DashScope as a Cake Tool
#tool nuget:?package=Cnblogs.SemanticKernel.Connectors.DashScope&version=0.3.2

SemanticKernel.DashScope

Make DashScope work with Semantic Kernel and Kernel Memory.

Get started with SemanticKernel

Add the NuGet package to your project.

dotnet add package Cnblogs.SemanticKernel.Connectors.DashScope
using Microsoft.SemanticKernel;

var builder = Kernel.CreateBuilder();
builder.Services.AddDashScopeChatCompletion("your-api-key", "qwen-max");
var kernel = builder.Build();

var prompt = "<message role=\"user\">Tell me about the Cnblogs</message>";
var response = await kernel.InvokePromptAsync(prompt);
Console.WriteLine(response);

ASP.NET Core with KernelMemory support

Install Nuget package Cnblogs.KernelMemory.AI.DashScope

Install Nuget package Microsoft.KernelMemory.Core

Install Nuget package Microsoft.KernelMemory.SemanticKernelPlugin

appsettings.json

{
  "dashScope": {
    "apiKey": "your-key",
    "chatCompletionModelId": "qwen-max",
    "textEmbeddingModelId": "text-embedding-v2"
  }
}

Program.cs

// Kernel Memory stuff
var memory = new KernelMemoryBuilder(builder.Services).WithDashScope(builder.Configuration).Build();
builder.Services.AddSingleton(memory);

// SK stuff
builder.Services.AddDashScopeChatCompletion(builder.Configuration);
builder.Services.AddSingleton(
    sp =>
    {
        var plugins = new KernelPluginCollection();
        plugins.AddFromObject(
            new MemoryPlugin(sp.GetRequiredService<IKernelMemory>(), waitForIngestionToComplete: true),
            "memory");
        return new Kernel(sp, plugins);
    });

Services

public class YourService(Kernel kernel, IKernelMemory memory)
{
    public async Task<string> GetCompletionAsync(string prompt)
    {
        var chatResult = await kernel.InvokePromptAsync(prompt);
        return chatResult.ToString();
    }

    public async Task ImportDocumentAsync(string filePath, string documentId)
    {
        await memory.ImportDocumentAsync(filePath, documentId);
    }

    public async Task<string> AskMemoryAsync(string question)
    {
        // use memory.ask to query kernel memory
        var skPrompt = """
                       Question to Kernel Memory: {{$input}}

                       Kernel Memory Answer: {{memory.ask $input}}

                       If the answer is empty say 'I don't know' otherwise reply with a preview of the answer, truncated to 15 words.
                       """;

        // you can bundle created functions into a singleton service to reuse them
        var myFunction = kernel.CreateFunctionFromPrompt(skPrompt);
        var result = await myFunction.InvokeAsync(question);
        return result.ToString();
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Cnblogs.SemanticKernel.Connectors.DashScope:

Package Downloads
Cnblogs.KernelMemory.AI.DashScope

Provide access to DashScope LLM models in Kernel Memory to generate embeddings and text

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.2 289 3/23/2024
0.3.1 96 3/20/2024
0.3.0 116 3/18/2024
0.2.0 207 3/7/2024
0.1.5 108 2/21/2024
0.1.4 110 2/15/2024
0.1.3 83 2/15/2024
0.1.2 87 2/13/2024
0.1.1 68 2/13/2024
0.1.0 127 2/13/2024