Examples
Copy-pasteable Agent Pack snippets. Each is a complete, working agent-pack.yaml for one specific scenario — drop it into your fork of hologram-ai-agent-example, set the listed env vars, and you have an agent.
For the full schema, see Agent Pack schema.
1. Minimal — OpenAI, English only
The smallest pack that does something useful. No auth, no MCP, no RAG. Just a polite OpenAI-backed assistant.
metadata:
id: minimal
defaultLanguage: en
languages:
en:
greetingMessage: "Hi {userName}, what can I help you with?"
llm:
provider: openai
model: gpt-4o-mini
temperature: 0.3
agentPrompt: |
You are a polite, concise assistant.
Answer in the user's language. Fallback: English.
Env: OPENAI_API_KEY.