Skip to content

Creatomate

Nuget package dotnet License: MIT Discord

Features

  • Fully generated C# SDK based on Creatomate 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.
  • Microsoft.Extensions.AI AIFunction tools for use with any IChatClient

Usage

1
2
3
using Creatomate;

using var client = new CreatomateClient(apiKey);

MEAI Tools

Using Creatomate as AIFunction tools with any Microsoft.Extensions.AI IChatClient.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
using var client = new CreatomateClient(apiKey);

// Create AIFunction tools from the Creatomate client.
var createRenderTool = client.AsCreateRenderTool();
var getRenderStatusTool = client.AsGetRenderStatusTool();
var listTemplatesTool = client.AsListTemplatesTool();
var getTemplateTool = client.AsGetTemplateTool();

// Verify all tools are created with the expected names.

// These tools can be passed to any IChatClient for function calling.
var tools = new[] { createRenderTool, getRenderStatusTool, listTemplatesTool, getTemplateTool };

Support

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

Acknowledgments

JetBrains logo

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