Skip to main content

Sinaptic® DROID+ Documentation

Sinaptic® DROID+ is a headless AI agent runtime engine. Like nginx serves websites, Sinaptic® DROID+ serves AI agents.

One binary, one config, production-ready agents in minutes.

What Sinaptic® DROID+ Does

  • Serves AI agents via an OpenAI-compatible API — any OpenAI SDK works out of the box
  • Supports 7 LLM providers — OpenAI, Anthropic, Gemini, Grok, Ollama, LM Studio, llama.cpp
  • Built-in security — SinapticAI intent firewall detects prompt injection, jailbreaks, and PII leaks
  • YAML-driven — define agents, models, tools, and security in simple config files
  • Zero dependencies — single Go binary, runs anywhere

Quick Example

# droid.yaml
edition: community
llm:
provider: openai
api_key: ${OPENAI_API_KEY}
# configs/agents/my-agent.yaml
name: my-agent
model:
name: gpt-4o-mini
personality: You are a helpful assistant.
droid up
# Your agent is live at http://localhost:8080/v1
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8080/v1", api_key="any")
response = client.chat.completions.create(
model="my-agent",
messages=[{"role": "user", "content": "Hello!"}]
)

Get Started