Skip to main content

Jacquard.NET

Native C# SDK for building agentic AI

Get Started

Build 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);