Voxta.Sdk.Modules 1.7.0.3

Prefix Reserved
dotnet add package Voxta.Sdk.Modules --version 1.7.0.3
                    
NuGet\Install-Package Voxta.Sdk.Modules -Version 1.7.0.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="Voxta.Sdk.Modules" Version="1.7.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Voxta.Sdk.Modules" Version="1.7.0.3" />
                    
Directory.Packages.props
<PackageReference Include="Voxta.Sdk.Modules" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Voxta.Sdk.Modules --version 1.7.0.3
                    
#r "nuget: Voxta.Sdk.Modules, 1.7.0.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.
#:package Voxta.Sdk.Modules@1.7.0.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Voxta.Sdk.Modules&version=1.7.0.3
                    
Install as a Cake Addin
#tool nuget:?package=Voxta.Sdk.Modules&version=1.7.0.3
                    
Install as a Cake Tool

Voxta Server SDK: Modules

This package contains the necessary abstractions to start creating your own modules.

To register a module, you first need to create your VoxtaModule class:

using Voxta.Abstractions.Modules;
using Voxta.Abstractions.Registration;
using Voxta.Model.Shared;

namespace Voxta.Modules.YourPluginName;

[UsedImplicitly]
public class VoxtaModule : IVoxtaModule
{
    public void Configure(IVoxtaModuleBuilder builder)
    {
        builder.Register(new()
        {
            ServiceName = "YourPluginName",
            Label = "Your Plugin Name",
            // List the services your module provides, along with their category scores:
            Supports = new()
            {
                { ServiceTypes.ChatAugmentations, ServiceDefinitionCategoryScore.Medium },
            },
            // For listing, you can specify additional metadata:
            Pricing = ServiceDefinitionPricing.Free,
            Hosting = ServiceDefinitionHosting.Builtin,
            Notes = "This description will show up in the modules list.",
            HelpLink = "https://doc.voxta.ai/",
            // Your module configuration:
            ModuleConfigurationProviderType = typeof(ModuleConfigurationProvider),
            // Necessary if you define augmentations
            Augmentations = [SamplePluginConstants.ExampleAugmentationsKey],
        });
        
        // Then register your services and dependencies:
        builder.AddChatAugmentationsService<MyChatAugmentationService>("YourPluginName");
    }
}

For additional information, please refer to the examples.

There are no supported framework assets in this 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.7.0.3 93 7/7/2026
1.7.0.2 121 6/24/2026
1.7.0.1 135 6/22/2026
1.7.0 227 6/19/2026
1.5.1 208 5/14/2026
1.2.0 507 12/15/2025
1.1.4 361 11/28/2025
1.1.0-beta.1 399 11/3/2025
1.0.3-alpha.1 396 10/20/2025
1.0.0-beta.152.3 412 10/1/2025
1.0.0-beta.152.2 439 9/24/2025
1.0.0-beta.152.1 403 9/24/2025
1.0.0-beta.152 415 9/23/2025
1.0.0-beta.150 430 9/8/2025