Skip to main content

A DSPy Adapter for exact-fidelity prompt templates with full control over messages.

Project description

dspy-template-adapter

A DSPy Adapter that gives you exact control over the messages sent to the LM — no hidden prompt rewriting. Define your prompt as a list of messages (just like the OpenAI API), and the adapter handles variable interpolation, few-shot demos, conversation history, output parsing, and integration with DSPy's full optimization pipeline.

pip install dspy-template-adapter

Why?

DSPy's built-in adapters (ChatAdapter, JSONAdapter) rewrite your prompt into DSPy's own scaffolding format ([[ ## field ## ]] markers, field descriptions, etc.). This is great for optimization, but it means you can't reproduce the exact API calls from a vanilla OpenAI/Anthropic prompt.

TemplateAdapter solves this: your messages are the prompt. The signature defines the I/O contract, the adapter renders your templates, and DSPy handles the rest (caching, tracing, retries, evaluation, optimization).

Quickstart

import dspy
from dspy_template_adapter import TemplateAdapter, Predict

# 1. Define a signature (the I/O contract)
class Summarize(dspy.Signature):
    """Summarize input text concisely."""
    text: str = dspy.InputField()
    summary: str = dspy.OutputField()

# 2. Define the prompt template
adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "You are a concise assistant. {instruction}"},
        {"role": "user", "content": "Summarize:\n\n{text}"},
    ],
    parse_mode="full_text",
)

# 3. Bind adapter to predictor
summarizer = Predict(Summarize, adapter=adapter)

# 4. Configure LM and call
dspy.configure(lm=dspy.LM("gpt-4o-mini"))
out = summarizer(text="DSPy is a framework for programming language models.")
print(out.summary)

What happens under the hood:

  1. {instruction} is replaced with the signature docstring ("Summarize input text concisely.")
  2. {text} is replaced with the input value
  3. The two rendered messages are sent to the LM — nothing else added
  4. The full response is mapped to summary (because parse_mode="full_text")

Core Concepts

The adapter has two jobs:

  • format() — Render your message templates + input values into the final messages list sent to the LM
  • parse() — Extract output fields from the LM's raw completion string

Template Syntax

Inside message content strings, you can use:

Syntax What it does
{field_name} Replaced with the value of that input field
{instruction} Replaced with the signature's docstring
{inputs()} Renders all input fields. Supports style='yaml', style='json', or default
{outputs()} Renders output field descriptions. Supports style='schema' for JSON schema
{demos()} Renders few-shot demos inline. Supports style='json', style='yaml', or default
{my_helper()} Calls a custom function registered with register_helper()
{{ / }} Literal braces (escaped)

Two special directive roles expand into multiple messages at render time:

Directive What it does
{"role": "demos"} Expands into user/assistant message pairs for each demo
{"role": "history"} Expands a dspy.History object into prior conversation turns

Parse Modes

Value When to use Requirement
"full_text" Entire LM response is your output Exactly 1 output field
"json" (default) LM returns JSON with keys matching output fields Any number of output fields
"xml" LM returns <field_name>value</field_name> tags Tags for every output field
"chat" Delegates to DSPy's ChatAdapter parser DSPy's [[ ## field ## ]] format
A callable Custom extraction logic (signature, completion) -> dict

Structured JSON Output

When your signature has multiple output fields:

class Triage(dspy.Signature):
    ticket: str = dspy.InputField()
    category: str = dspy.OutputField()
    priority: str = dspy.OutputField()

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "Return JSON only with keys: category, priority."},
        {"role": "user", "content": "{inputs(style='yaml')}"},
    ],
    parse_mode="json",
)

triage = Predict(Triage, adapter=adapter)
out = triage(ticket="Production checkout failing for VIP users")
print(out.category, out.priority)

The JSON parser uses json_repair for robustness — it handles malformed JSON and can extract JSON objects embedded in surrounding text.

XML Output

Some models (especially Claude) perform well with XML-tagged output:

class Review(dspy.Signature):
    text: str = dspy.InputField()
    sentiment: str = dspy.OutputField()
    reasoning: str = dspy.OutputField()

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": (
            "Analyze the sentiment. Respond with XML tags:\n"
            "<reasoning>your reasoning</reasoning>\n"
            "<sentiment>positive, negative, or neutral</sentiment>"
        )},
        {"role": "user", "content": "{text}"},
    ],
    parse_mode="xml",
)

reviewer = Predict(Review, adapter=adapter)
out = reviewer(text="This product exceeded all my expectations!")
print(out.sentiment, out.reasoning)

XML parsing handles tags anywhere in the response, multiline values, and raises clear errors for missing fields. XML avoids the common problem of models escaping quotes inside JSON string values.

Template Functions

{inputs()} — render all input field values

# Default (same as yaml): "field: value" lines
{"role": "user", "content": "{inputs()}"}

# JSON object
{"role": "user", "content": "{inputs(style='json')}"}

{outputs()} — render output field descriptions

# Numbered list of field names/types
{"role": "system", "content": "Produce:\n{outputs()}"}

# JSON schema
{"role": "system", "content": "Match this schema:\n{outputs(style='schema')}"}

{demos()} — render few-shot examples inline

# Demos as JSON objects inside a message
{"role": "system", "content": "Examples:\n{demos(style='json')}"}

Styles: 'json', 'yaml', or default (numbered text blocks).

Few-Shot Demos: Three Strategies

A) Inline — demos as text inside a message

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "Examples:\n{demos(style='json')}"},
        {"role": "user", "content": "{inputs(style='yaml')}"},
    ],
    parse_mode="json",
)

Result: 2 messages. Demos are text inside the system message.

B) Directive — demos as separate conversation turns

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "Classify tickets."},
        {"role": "demos"},
        {"role": "user", "content": "{inputs(style='yaml')}"},
    ],
    parse_mode="json",
)

Each demo becomes a user + assistant message pair. You can customize the format:

{"role": "demos", "user": "Ticket: {ticket}", "assistant": "{outputs_json}"}

C) Auto-injection

If your template doesn't mention demos at all, they're automatically injected as user/assistant pairs before the final user message when an optimizer adds them. This ensures compatibility with DSPy's optimization pipeline (BootstrapFewShot, etc.) without template changes.

The {instruction} Slot

class Summarize(dspy.Signature):
    """Summarize input text concisely."""  # <-- this is {instruction}
    text: str = dspy.InputField()
    summary: str = dspy.OutputField()

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "You are helpful. {instruction}"},
        {"role": "user", "content": "{text}"},
    ],
    parse_mode="full_text",
)

DSPy optimizers like MIPRO and COPRO rewrite the signature's instruction string. Including {instruction} in your template lets them optimize your prompt. Omitting it makes your prompt fully static.

Conversation History

For multi-turn chatbots, use dspy.History and the {"role": "history"} directive:

class ChatSig(dspy.Signature):
    question: str = dspy.InputField()
    history: dspy.History = dspy.InputField()
    answer: str = dspy.OutputField()

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "You are a helpful chatbot."},
        {"role": "history"},
        {"role": "user", "content": "{question}"},
    ],
    parse_mode="full_text",
)

chat = Predict(ChatSig, adapter=adapter)
history = dspy.History(messages=[
    {"question": "What is 1+1?", "answer": "2"},
])
resp = chat(question="What is 2+2?", history=history)

The directive expands each history entry into user/assistant message pairs. If omitted, history is auto-injected before the last user message.

Custom Template Helpers

Register custom template functions for complex rendering logic:

def format_as_xml(ctx, signature, demos, **kwargs):
    tag = kwargs.get("tag", "input")
    parts = []
    for name in signature.input_fields:
        val = ctx.get(name, "")
        parts.append(f"<{tag}_{name}>{val}</{tag}_{name}>")
    return "\n".join(parts)

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "Process XML input."},
        {"role": "user", "content": "{format_as_xml(tag='field')}"},
    ],
    parse_mode="full_text",
)
adapter.register_helper("format_as_xml", format_as_xml)

Helper signature: (ctx: dict, signature, demos: list, **kwargs) -> str

Per-Module Adapter Isolation

The Predict wrapper lets each predictor use a different adapter:

formal = Predict(Summarize, adapter=TemplateAdapter(
    messages=[{"role": "system", "content": "Formal tone."}, {"role": "user", "content": "{text}"}],
    parse_mode="full_text",
))
casual = Predict(Summarize, adapter=TemplateAdapter(
    messages=[{"role": "system", "content": "Casual tone."}, {"role": "user", "content": "{text}"}],
    parse_mode="full_text",
))

# Each call uses its own system prompt
out_formal = formal(text="Quantum computing is...")
out_casual = casual(text="Quantum computing is...")

Custom Parse Functions

Pass any callable as parse_mode:

import re

def extract_rating(signature, completion):
    match = re.search(r"(\d+)/10", completion)
    return {"rating": match.group(1) if match else "0"}

adapter = TemplateAdapter(
    messages=[
        {"role": "system", "content": "Rate quality 1-10. Format: N/10."},
        {"role": "user", "content": "{text}"},
    ],
    parse_mode=extract_rating,
)

Debugging

Preview without calling the LM

msgs = adapter.preview(Summarize, inputs={"text": "hello"})
for msg in msgs:
    print(f"[{msg['role']}] {msg['content']}")

Inspect what was actually sent

last = dspy.settings.lm.history[-1]
for msg in last["messages"]:
    print(f"[{msg['role']}] {msg['content']}")

Checklist

  1. Import error? Ensure dspy-template-adapter is installed (pip install dspy-template-adapter)
  2. Template wrong? Use adapter.preview(...) — no LM call needed
  3. Parse error on full_text? Signature must have exactly 1 output field
  4. Parse error on json? LM response must contain all output field keys
  5. Parse error on xml? LM response must contain <field>...</field> for every output field
  6. Demos missing? {demos()} inline and {"role": "demos"} directive are mutually exclusive with auto-injection — pick one
  7. Literal braces eaten? Use {{ and }}

Finetuning Data Export

ft = adapter.format_finetune_data(
    Summarize,
    demos=[],
    inputs={"text": "DSPy is a framework."},
    outputs={"summary": "A framework for LMs."},
)
# ft["messages"] is an OpenAI-compatible message list with assistant response appended

API Reference

TemplateAdapter(
    messages: list[dict],         # Message templates (required)
    parse_mode: str | callable,   # "json" (default), "full_text", "xml", "chat", or callable
)

Methods:
    .format(signature, demos, inputs) -> list[dict]
        Render messages from templates.

    .parse(signature, completion) -> dict
        Extract output fields from LM response.

    .preview(signature, demos=None, inputs=None) -> list[dict]
        Render without calling LM. For debugging.

    .register_helper(name, fn)
        Register custom {name()} template function.
        fn: (ctx, signature, demos, **kwargs) -> str

    .format_finetune_data(signature, demos, inputs, outputs) -> dict
        Generate OpenAI-compatible finetuning entry.

Predict(signature, adapter=adapter)
    dspy.Predict subclass with per-module adapter binding.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dspy_template_adapter-0.1.0.tar.gz (20.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dspy_template_adapter-0.1.0-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file dspy_template_adapter-0.1.0.tar.gz.

File metadata

  • Download URL: dspy_template_adapter-0.1.0.tar.gz
  • Upload date:
  • Size: 20.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for dspy_template_adapter-0.1.0.tar.gz
Algorithm Hash digest
SHA256 d681e99ef6ebba18e8fe1240124d4cef3c8fb68d8cd1b102bbc1ad93e99dd874
MD5 ca9146fccb2d1dda07f03b93ac06b0ef
BLAKE2b-256 cda48d39eefb3241929810241c3ccc9d2e801c3f463426c4545abc75d85e39f0

See more details on using hashes here.

File details

Details for the file dspy_template_adapter-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for dspy_template_adapter-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 80842b9997f43263c0a4891c88a2895fb3c5497ea7c1b621133a3e36d55074d1
MD5 3a1202c0c88e1a3d13691124f85be872
BLAKE2b-256 becbdc3c9c6d11ebf16bc86a8dc788c4b2dfe5f751952f98c6d4c7cb93787ee2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page