YedaAI Blog
Yeda AI Tips · #006

The System Prompt Is the Director's Notes

Every AI chatbot you've ever used read a hidden set of instructions before you typed a single word. That block of text — the system prompt — is the director's notes for the model: it defines the persona, the rules of the road, the safety boundaries, and even the exact output format. One paragraph turns a general-purpose model into your product.

What goes in it

  1. Persona — "You are a senior code reviewer." The model plays the part you cast, and it changes vocabulary, rigor, and tone.
  2. Rules & boundaries — what it should and shouldn't do: "Never rewrite the code, only flag issues." "Decline questions outside billing."
  3. Output format — "Respond as markdown bullets, max 5 items." Products depend on this for parsing and rendering.

Same model, different product

client.messages.create(
    model="claude-opus-4-8",
    system="You are a senior code reviewer. Flag issues as bullets. "
           "Never rewrite the code.",
    messages=[{"role": "user", "content": diff}],
)

Swap that one system string for "You are a patient tutor for beginners" and you've shipped a different app — no retraining, no fine-tuning.

Power tricks

Resources

Building an AI feature? Yeda AI designs, audits, and ships production LLM systems.

Talk to us · Read the blog