|
| 1 | +# System Design for Agentic AI Systems |
| 2 | + |
| 3 | +This directory contains comprehensive resources for designing and architecting agentic AI systems. It covers everything from high-level architectural patterns to specific implementation cookbooks and evaluation methodologies. |
| 4 | + |
| 5 | +## Directory Structure |
| 6 | + |
| 7 | +### [Architectures](./architectures/) |
| 8 | +Comprehensive system architecture designs and blueprints for agentic AI systems. |
| 9 | + |
| 10 | +**Key Resources:** |
| 11 | +- [12-Step Agentic System Design Methodology](./architectures/ASD-12-step-v1.5.md) - Complete methodology for designing agentic systems |
| 12 | +- [Future Trends in Agentic Architecture](./architectures/agentic-arch-future.md) - Emerging trends and future directions |
| 13 | +- [Philosophical Agent System Design](./architectures/philoagent_system_architecture.md) - Philosophical foundations for agent design |
| 14 | +- [Modern AI Technology Stack](./architectures/AI-stack.md) - Overview of current AI technology stack |
| 15 | +- [AI-Native Application Design](./architectures/ai-native-1.md) - Principles for AI-native applications |
| 16 | +- [NVIDIA's Agentic AI Approach](./architectures/agentic-ai-nvidia.md) - NVIDIA's perspective on agentic AI |
| 17 | + |
| 18 | +### [Design Patterns](./design-patterns/) |
| 19 | +Design patterns and templates for building agentic systems with code examples and implementation details. |
| 20 | + |
| 21 | +**Key Resources:** |
| 22 | +- [Extended Design Patterns with Code](./design-patterns/AI-Agent-Design-Patterns-v1.3.md) - Design patterns with implementation examples |
| 23 | +- [Design Patterns with Code Examples](./design-patterns/patterns_w_codes.md) - Practical code examples for design patterns |
| 24 | +- [Reflexion Pattern Implementation](./design-patterns/Reflexion.md) - Implementation guide for the Reflexion pattern |
| 25 | +- [Design Patterns Overview](./design-patterns/README.md) - Overview of available design patterns |
| 26 | + |
| 27 | +### [Cookbooks](./cookbooks/) |
| 28 | +Practical implementation guides and tutorials for building agentic systems. |
| 29 | + |
| 30 | +**Key Resources:** |
| 31 | +- [A Practical Guide to AI Agents](./cookbooks/A-Practical-Guide-to-AI-Agents-updated.pdf) - Snowflake's comprehensive practical guide |
| 32 | +- [Building Effective Agents](./cookbooks/anthropic-build_effective_agents.md) - Anthropic's guide to building effective agents |
| 33 | +- [Compound AI Systems Implementation](./cookbooks/compund-ai-systems.md) - Implementation guide for compound AI systems |
| 34 | + |
| 35 | +### [Agentic AI](./agentic-ai/) |
| 36 | +Specialized resources focused on agentic AI system design. |
| 37 | + |
| 38 | +**Key Resources:** |
| 39 | +- [Agentic System Design Methodology](./agentic-ai/ASD-12-step-v1.5.md) - Specialized version of the 12-step methodology |
| 40 | + |
| 41 | +### [Layers](./layers/) |
| 42 | +Architectural layer designs and cognitive layer implementations. |
| 43 | + |
| 44 | +**Key Resources:** |
| 45 | +- [Cognitive Layer Architecture](./layers/_cognition_layer.md) - Design patterns for cognitive layers |
| 46 | +- [Reasoning and Planning Layer](./layers/_cognition_reason+plan.md) - Reasoning and planning layer design |
| 47 | + |
| 48 | +### [RAGs](./RAGs/) |
| 49 | +Retrieval-Augmented Generation systems and architectures. |
| 50 | + |
| 51 | +**Key Resources:** |
| 52 | +- [RAG Architectures Overview](./RAGs/README.md) - Comprehensive overview of RAG architectures |
| 53 | +- Multi-modal RAG implementations |
| 54 | +- CRAGs, Self-RAGs, Agentic-RAGs, Adaptive-RAGs, KG-RAGs |
| 55 | +- Real-world examples including Uber's Enhanced Agentic RAG |
| 56 | + |
| 57 | +### [Evals](./evals/) |
| 58 | +Evaluation methodologies and frameworks for agentic systems. |
| 59 | + |
| 60 | +**Key Resources:** |
| 61 | +- [Agent Evaluation Frameworks](./evals/agents_evals.md) - Comprehensive evaluation methodologies for agents |
| 62 | + |
| 63 | +### [Protocols](./protocols/) |
| 64 | +Communication protocols and standards for agentic systems. |
| 65 | + |
| 66 | +**Key Resources:** |
| 67 | +- [AI Communication Protocols](./protocols/protocols-AI.md) - Standards and protocols for AI communication |
| 68 | + |
| 69 | +### [Memory](./memory/) |
| 70 | +Memory systems and architectures for agentic AI. |
| 71 | + |
| 72 | +*Currently empty - placeholder for memory system designs* |
| 73 | + |
| 74 | +<!-- ## Getting Started |
| 75 | +
|
| 76 | +1. **Start with Architectures**: Begin with the 12-step ASD methodology in [architectures/ASD-12-step-v1.5.md](./architectures/ASD-12-step-v1.5.md) |
| 77 | +2. **Explore Design Patterns**: Review the design patterns in [design-patterns/](./design-patterns/) |
| 78 | +3. **Study Real Examples**: Check out the cookbooks for practical implementation guides |
| 79 | +4. **Understand RAG Systems**: Explore the RAGs directory for retrieval-augmented generation patterns |
| 80 | +5. **Evaluate Your System**: Use the evaluation frameworks in the evals directory |
| 81 | +
|
| 82 | +## Additional Resources |
| 83 | +
|
| 84 | +See [SD_resources.md](./SD_resources.md) for curated external resources including: |
| 85 | +- Industry guides from Snowflake, Anthropic, and others |
| 86 | +- Big company implementations (AWS, Airbnb, Uber, NVIDIA) |
| 87 | +- Academic and research papers |
| 88 | +- Video tutorials and walkthroughs |
| 89 | +
|
| 90 | +## Key Design Principles |
| 91 | +
|
| 92 | +- **Modularity**: Design systems with clear separation of concerns |
| 93 | +- **Scalability**: Plan for growth and performance at scale |
| 94 | +- **Reliability**: Implement robust error handling and fallback mechanisms |
| 95 | +- **Security**: Consider safety and security from the ground up |
| 96 | +- **Evaluability**: Build systems that can be measured and improved |
| 97 | +
|
| 98 | +## Contributing |
| 99 | +
|
| 100 | +When adding new content: |
| 101 | +1. Follow the existing directory structure |
| 102 | +2. Include comprehensive documentation |
| 103 | +3. Provide code examples where applicable |
| 104 | +4. Update this README with new sections |
| 105 | +5. Ensure all files are properly referenced --> |
| 106 | + |
| 107 | +--- |
| 108 | + |
| 109 | +*This directory serves as a comprehensive resource for designing, implementing, and evaluating agentic AI systems. Each subdirectory contains specialized knowledge and practical examples to help you build robust, scalable, and effective AI agent systems.* |
0 commit comments