mkdocs.yml 853 B

123456789101112131415161718192021222324252627282930313233343536
  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. - Product:
  20. - Desktop 安装与使用手册 (中文): DESKTOP_MANUAL_zh.md
  21. - Desktop Requirements Change: requirements-change-personal-desktop.md
  22. - Theory: theory.md
  23. - Research:
  24. - Formal Theory: research/THEORY.md
  25. - Experiment Plan: research/PLAN.md
  26. plugins:
  27. - search
  28. markdown_extensions:
  29. - pymdownx.highlight
  30. - pymdownx.superfences
  31. - admonition
  32. - tables