Voxta.Sdk.Modules
1.5.1
dotnet add package Voxta.Sdk.Modules --version 1.5.1
NuGet\Install-Package Voxta.Sdk.Modules -Version 1.5.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="Voxta.Sdk.Modules" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Voxta.Sdk.Modules" Version="1.5.1" />
<PackageReference Include="Voxta.Sdk.Modules" />
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.5.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Voxta.Sdk.Modules, 1.5.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.
#:package Voxta.Sdk.Modules@1.5.1
#: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.5.1
#tool nuget:?package=Voxta.Sdk.Modules&version=1.5.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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.
-
net10.0
- Microsoft.Extensions.DependencyModel (>= 10.0.7)
- Voxta.Abstractions (>= 1.5.1)
- Voxta.Common (>= 1.5.1)
- Voxta.Model (>= 1.5.1)
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.5.1 | 133 | 5/14/2026 |
| 1.2.0 | 449 | 12/15/2025 |
| 1.1.4 | 302 | 11/28/2025 |
| 1.1.0-beta.1 | 345 | 11/3/2025 |
| 1.0.3-alpha.1 | 342 | 10/20/2025 |
| 1.0.0-beta.152.3 | 358 | 10/1/2025 |
| 1.0.0-beta.152.2 | 384 | 9/24/2025 |
| 1.0.0-beta.152.1 | 349 | 9/24/2025 |
| 1.0.0-beta.152 | 359 | 9/23/2025 |
| 1.0.0-beta.150 | 376 | 9/8/2025 |