mkdocs.yml 698 B

123456789101112131415161718192021222324252627282930313233
  1. site_name: lambdagent Documentation
  2. site_description: Lambda Calculus Agent DSL
  3. repo_url: https://github.com/kenny67nju/lambdagent
  4. theme:
  5. name: material
  6. palette:
  7. primary: indigo
  8. features:
  9. - content.code.copy
  10. - navigation.sections
  11. nav:
  12. - Home: index.md
  13. - Quick Start: quickstart.md
  14. - Core Constructs: constructs.md
  15. - YAML Configuration: yaml-config.md
  16. - Multi-Agent: multi-agent.md
  17. - API Reference: api.md
  18. - AgentPaaS: agentpaas.md
  19. - Theory: theory.md
  20. - Research:
  21. - Formal Theory: research/THEORY.md
  22. - Experiment Plan: research/PLAN.md
  23. plugins:
  24. - search
  25. markdown_extensions:
  26. - pymdownx.highlight
  27. - pymdownx.superfences
  28. - admonition
  29. - tables