SemanticKernel.Assistants.AutoGen 1.13.1

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

// Install SemanticKernel.Assistants.AutoGen as a Cake Tool
#tool nuget:?package=SemanticKernel.Assistants.AutoGen&version=1.13.1

Assistants for Semantic Kernel

This is assistant support for the Semantic Kernel.

This enables the usage of assistants for the Semantic Kernel without relying on OpenAI Assistant APIs. It runs locally planners and plugins for the assistants.

It provides different scenarios for the usage of assistants such as:

  • Assistant with Semantic Kernel plugins
  • Multi-Assistant conversation

As the assistants are using the Semantic Kernel, you can use your own model for the assistants and host them locally (see: Bring you own model for more details.).

Usage

  1. Create you agent description file in yaml:
    name: Mathematician
    description: A mathematician that resolves given maths problems.
    instructions: |
      You are a mathematician.
      Given a math problem, you must answer it with the best calculation formula.
      No need to show your work, just give the answer to the math problem.
      Use calculation results.
    input_parameter: 
      default_value: ""
      description: |
          The word mathematics problem to solve in 2-3 sentences.
          Make sure to include all the input variables needed along with their values and units otherwise the math function will not be able to solve it.
    execution_settings:
      planner: Handlebars
      prompt_settings: 
        temperature: 0.0
        top_p: 1
        max_tokens: 2000
    
  2. Instanciate your assistant in your code:
     string azureOpenAIChatCompletionDeployment = configuration["AzureOpenAIDeploymentName"]!;
     string azureOpenAIEndpoint = configuration["AzureOpenAIEndpoint"]!;
     string azureOpenAIKey = configuration["AzureOpenAIAPIKey"]!;
    
     var mathKernel = Kernel.CreateBuilder()
                                         .AddAzureOpenAIChatCompletion(azureOpenAIChatCompletionDeployment, azureOpenAIEndpoint, azureOpenAIKey)
                                         .Build();
    
     mathKernel.ImportPluginFromObject(new MathPlugin());
    
     var mathematician = AssistantBuilder.FromTemplate("./Assistants/Mathematician.yaml")
                                         .WithKernel(mathKernel)
                                         .Build();
    
    var thread = mathematician.CreateThread();
    await thread.InvokeAsync("Your ask to the assistant.");
    

Bring you own model ?

As the assistants are using the Semantic Kernel, you can use your own model for the assistants. For example, you can use the Ollama model for the assistants.

This could be achieved by using the Ollama connector for the Semantic Kernel:

using Codeblaze.SemanticKernel.Connectors.Ollama;

string ollamaEndpoint = configuration["OllamaEndpoint"]!;

var butlerKernel = Kernel.CreateBuilder()
                    .AddOllamaChatCompletion("phi:latest", ollamaEndpoint)
                    .Build();

assistant = AssistantBuilder.FromTemplate("./Assistants/Butler.yaml")
        .WithKernel(butlerKernel)
        .Build();

License

This project is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.13.1 36 6/2/2024
1.13.0 81 5/21/2024
1.12.0 61 5/17/2024
1.10.1 85 5/1/2024
1.10.0 53 5/1/2024
1.7.3 91 4/8/2024
1.7.2 96 4/8/2024
1.7.1 95 4/7/2024
1.6.3 139 3/24/2024
1.6.2 122 3/24/2024
1.5.3 161 3/3/2024
1.5.2 156 3/3/2024
1.5.1 156 3/3/2024
1.5.0 167 3/2/2024
1.3.3 151 2/10/2024
0.0.1-alpha 125 2/10/2024