Skip to content

Novu

Nuget package dotnet License: MIT Discord

Features 🔥

  • Fully generated C# SDK based on official Novu OpenAPI specification using AutoSDK
  • Same day update to support new features
  • Updated and supported automatically if there are no breaking changes
  • All modern .NET features - nullability, trimming, NativeAOT, etc.
  • Support .Net Framework/.Net Standard 2.0

Usage

1
2
3
using Novu;

using var client = new NovuClient(apiKey);

MEAI Tools

Example showing how to create MEAI AIFunction tools from the Novu client for use with any IChatClient.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// Create a Novu client and convert to AIFunction tools.
using var client = new NovuClient(apiKey: "test-key");

// Create tools for use with any IChatClient.
var triggerTool = client.AsTriggerEventTool();
var subscribersTool = client.AsSearchSubscribersTool();
var workflowsTool = client.AsListWorkflowsTool();
var notificationsTool = client.AsListNotificationsTool();
var getNotificationTool = client.AsGetNotificationTool();
var topicsTool = client.AsListTopicsTool();

// Verify tool names and descriptions are set.

Support

Priority place for bugs: https://github.com/tryAGI/Novu/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Novu/discussions
Discord: https://discord.gg/Ca2xhfBf3v

Acknowledgments

JetBrains logo

This project is supported by JetBrains through the Open Source Support Program.