Jacquard.NET
Native C# SDK for building agentic AI
Get StartedBuild an agent in 10 lines
using Jacquard.Core;
using Jacquard.Models.Bedrock;
var agent = new Agent(
model: new BedrockModel("us-east-1"),
systemPrompt: "You are a helpful assistant.",
toolProviders: [new WeatherTools()]
);
var result = await agent.InvokeAsync("What's the weather in London?");
Console.WriteLine(result.Message);