Skip to content

signalwire/signalwire-dotnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

138 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

SignalWire SDK for .NET

Build AI voice agents, control live calls over WebSocket, and manage every SignalWire resource over REST -- all from one package.

Documentation · Report an Issue · NuGet

Discord MIT License GitHub Stars

Open in GitHub Codespaces Run on Replit


What's in this SDK

Capability What it does Quick link
AI Agents Build voice agents that handle calls autonomously -- the platform runs the AI pipeline, your code defines the persona, tools, and call flow Agent Guide
RELAY Client Control live calls and SMS/MMS in real time over WebSocket -- answer, play, record, collect DTMF, conference, transfer, and more RELAY docs
REST Client Manage SignalWire resources over HTTP -- phone numbers, SIP endpoints, Fabric AI agents, video rooms, messaging, and 18+ API namespaces REST docs
dotnet add package SignalWire.Sdk

AI Agents

Each agent is a self-contained microservice that generates SWML (SignalWire Markup Language) and handles SWAIG (SignalWire AI Gateway) tool calls. The SignalWire platform runs the entire AI pipeline (STT, LLM, TTS) -- your agent just defines the behavior.

using SignalWire.Agent;
using SignalWire.SWAIG;

var agent = new AgentBase(new AgentOptions { Name = "my-agent", Route = "/agent" });

agent.AddLanguage("English", "en-US", "inworld.Mark");
agent.PromptAddSection("Role", "You are a helpful assistant.");

agent.DefineTool(
    name:        "get_time",
    description: "Get the current time",
    parameters:  new Dictionary<string, object>(),
    handler:     (args, rawData) => new FunctionResult($"The time is {DateTime.Now:HH:mm:ss}"));

agent.Run();

Test SWAIG tools locally without a running server using the swaig-test CLI (dotnet-script) against a built assembly:

swaig-test --assembly path/to/MyAgent.dll --class My.Namespace.MyAgent --list-tools
swaig-test --url http://user:pass@localhost:3000/agent --dump-swml
swaig-test --url http://user:pass@localhost:3000/agent --exec get_time

Agent Features

  • Prompt Object Model (POM) -- structured prompt composition via PromptAddSection()
  • SWAIG tools -- define functions with DefineTool() that the AI calls mid-conversation
  • Skills system -- add capabilities with one-liners: agent.AddSkill("datetime")
  • Contexts and steps -- structured multi-step workflows with navigation control
  • DataMap tools -- tools that execute on SignalWire's servers without your own webhook
  • Dynamic configuration -- per-request agent customization for multi-tenant deployments
  • Call flow control -- pre-answer, post-answer, and post-AI verb insertion
  • Prefab agents -- ready-to-use archetypes (InfoGatherer, Survey, FAQ, Receptionist, Concierge)
  • Multi-agent hosting -- serve multiple agents on a single server with AgentServer
  • SIP routing -- route SIP calls to agents based on usernames
  • Session state -- persistent conversation state with global data and post-prompt summaries
  • Security -- auto-generated basic auth, function-specific HMAC tokens
  • Serverless -- Azure Functions, AWS Lambda, and auto-detection adapters

Agent Examples

The examples/ directory contains working C# examples:

Example What it demonstrates
SimpleAgent.cs POM prompts, SWAIG tools, multilingual support, summaries
ContextsDemo.cs Multi-step workflow with context switching and step navigation
DataMapDemo.cs Server-side API tools without webhooks
SkillsDemo.cs Loading built-in skills (datetime, math)
CallFlowAndActionsDemo.cs Call flow verbs, debug events, FunctionResult actions
SessionAndStateDemo.cs Global data, post-prompt summaries, session state
MultiAgentServer.cs Multiple agents on one server with AgentServer
LambdaAgent.cs AWS Lambda deployment
ComprehensiveDynamicAgent.cs Per-request dynamic configuration, multi-tenant routing

See examples/README.md for the full list organized by category.


RELAY Client

Real-time call control and messaging over WebSocket. The RELAY client connects to SignalWire via the Blade protocol and gives you async control over live phone calls and SMS/MMS.

using SignalWire.Relay;

var client = new Client(new Dictionary<string, string>
{
    ["project"]  = "your-project-id",
    ["token"]    = "your-token",
    ["host"]     = "example.signalwire.com",
    ["contexts"] = "default",
});

client.OnCall(async (call, evt) =>
{
    await call.AnswerAsync();
    var action = call.PlayTts("Welcome to SignalWire!");
    await action.WaitAsync();
    await call.HangupAsync();
});

await client.ConnectAsync();
await client.RunAsync();
  • All calling methods: play, record, collect, connect, detect, fax, tap, stream, AI, conferencing, queues, and more
  • SMS/MMS messaging with delivery tracking
  • Action objects with WaitAsync(), Stop(), Pause(), Resume()
  • Auto-reconnect with exponential backoff

See the RELAY documentation for the full guide, API reference, and examples.


REST Client

Synchronous REST client for managing SignalWire resources and controlling calls over HTTP.

using SignalWire.REST;

var client = new RestClient("project-id", "token", "example.signalwire.com");

await client.Fabric.AiAgents.CreateAsync(new Dictionary<string, object?>
{
    ["name"]   = "Support Bot",
    ["prompt"] = new Dictionary<string, object?> { ["text"] = "You are helpful." },
});
await client.PhoneNumbers.SearchAsync(new Dictionary<string, string> { ["area_code"] = "512" });
await client.Datasphere.Documents.SearchAsync(new Dictionary<string, object?>
{
    ["query_string"] = "billing policy",
});
  • 21 namespaced API surfaces: Fabric, Calling, Video, Datasphere, Compat, Phone Numbers, SIP, Queues, Recordings, and more
  • Task-based async API throughout
  • HttpClient with connection pooling
  • Dictionary returns -- raw data, no wrapper objects

See the REST documentation for the full guide, API reference, and examples.


Installation

dotnet add package SignalWire.Sdk

Targets .NET 8.0, 9.0, and 10.0. Works with C#, F#, VB.NET, and any CLR language.

Documentation

Full reference documentation is available at developer.signalwire.com/sdks/agents-sdk.

Guides are also available in the docs/ directory:

Getting Started

  • Agent Guide -- creating agents, prompt configuration, dynamic setup
  • Architecture -- SDK architecture and core concepts
  • SDK Features -- feature overview, SDK vs raw SWML comparison

Core Features

Skills and Extensions

Deployment

Reference

Environment Variables

Variable Used by Description
SIGNALWIRE_PROJECT_ID RELAY, REST Project identifier
SIGNALWIRE_API_TOKEN RELAY, REST API token
SIGNALWIRE_SPACE RELAY, REST Space hostname
SWML_BASIC_AUTH_USER Agents Basic auth username (default: auto-generated)
SWML_BASIC_AUTH_PASSWORD Agents Basic auth password (default: auto-generated)
SWML_PROXY_URL_BASE Agents Base URL when behind a reverse proxy
SWML_SSL_ENABLED Agents Enable HTTPS (true, 1, yes)
SWML_SSL_CERT_PATH Agents Path to SSL certificate
SWML_SSL_KEY_PATH Agents Path to SSL private key
SIGNALWIRE_LOG_LEVEL All Logging level (debug, info, warn, error)
SIGNALWIRE_LOG_MODE All Set to off to suppress all logging

Testing

# Build the solution
dotnet build

# Run the full test suite (xUnit)
dotnet test

# Run a subset by fully-qualified name
dotnet test --filter "FullyQualifiedName~LoggerTests"

License

MIT -- see LICENSE for details.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors