← Back to Tutorials

9. References

Continue Your AI Learning Journey

Quick Reference Guide

TaskCommand / Code Snippet
Create agentnew Agent({ name, instructions, model })
Add memoryagent.memory = new VolatileMemory()
Add toolagent.addTool(new Tool({ name, handler }))
Create orchestratornew Orchestrator({ agents, defaultAgent })
Hand offorchestrator.handoff(from, to, { context })
Add guardrailnew ContentSafetyPolicy({ blockHateSpeech: true })
Send messageclient.sendMessage("Hello")

Glossary

TermDefinition
AgentAI entity with instructions, memory, and tools
OrchestratorCoordinates multi-agent workflows and handoffs
ToolFunction an agent can call to perform actions
MemoryPersistent storage for agent context
GuardrailSafety/compliance policy for inputs/outputs
HandoffTransfer conversation from one agent to another

Bonus Lecture: What's Next?

After completing this guide, you're ready to explore:

Resources & Discussion

📘 Tip: Join the Microsoft Agent Framework community to share your projects, ask questions, and stay updated on the latest features.
✏️ Final Challenge: Build an end-to-end agent that solves a real problem. It should use memory, at least 3 tools, multi-agent orchestration, and be deployed with observability. Share your project with the community!