mkdocs.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. site_name: SWE-agent documentation
  2. theme:
  3. name: material
  4. custom_dir: docs/overrides
  5. icon:
  6. repo: fontawesome/brands/github
  7. logo: assets/swe-agent.svg
  8. palette:
  9. - media: "(prefers-color-scheme)"
  10. toggle:
  11. icon: material/brightness-auto
  12. name: Switch to light mode
  13. - scheme: default
  14. primary: black
  15. accent: deep orange
  16. media: "(prefers-color-scheme: light)"
  17. toggle:
  18. icon: material/weather-night
  19. name: Switch to dark mode
  20. - scheme: slate
  21. primary: black
  22. accent: deep orange
  23. media: "(prefers-color-scheme: dark)"
  24. toggle:
  25. icon: material/weather-sunny
  26. name: Switch to light mode
  27. features:
  28. - navigation.indexes
  29. - content.action.edit
  30. - navigation.footer
  31. - content.code.copy
  32. - content.footnote.tooltips
  33. - header.autohide
  34. - announce.dismiss
  35. markdown_extensions:
  36. - admonition
  37. - pymdownx.details
  38. - pymdownx.superfences
  39. - pymdownx.magiclink
  40. - footnotes
  41. - attr_list
  42. - md_in_html
  43. - pymdownx.snippets
  44. - pymdownx.emoji:
  45. emoji_index: !!python/name:material.extensions.emoji.twemoji
  46. emoji_generator: !!python/name:material.extensions.emoji.to_svg
  47. nav:
  48. - Home: index.md
  49. - Background:
  50. - "background/index.md"
  51. - "Overview": "background/overview.md"
  52. - "ACI": "background/aci.md"
  53. - Installation:
  54. - "installation/index.md"
  55. - "Use in-browser": "installation/codespaces.md"
  56. - "Install from source": "installation/source.md"
  57. - "Docker": "installation/docker.md"
  58. - "API keys": "installation/keys.md"
  59. - "Installation tips": "installation/tips.md"
  60. - "Changelog": "installation/changelog.md"
  61. - Usage:
  62. - "usage/index.md"
  63. - "Command line usage": "usage/cl_tutorial.md"
  64. - "Using the web UI": "usage/web_ui.md"
  65. - "Trajectories": "usage/trajectories.md"
  66. - "Trajectory inspector": "usage/inspector.md"
  67. - "FAQ": "usage/usage_faq.md"
  68. - "Benchmarking": "usage/benchmarking.md"
  69. - Configuration:
  70. - "Config files": "config/config.md"
  71. - "Command definitions": "config/commands.md"
  72. - "Demonstrations": "config/demonstrations.md"
  73. - "Environment variables": "config/env.md"
  74. - "Docker images": "config/docker.md"
  75. - Development:
  76. - "Contribution guide": "dev/contribute.md"
  77. - "Formatting conflicts": "dev/formatting_conflicts.md"
  78. - Reference:
  79. - "reference/index.md"
  80. - "Agent": "reference/agent.md"
  81. - "Models": "reference/models.md"
  82. - "Environment": "reference/env.md"
  83. - "Environment utils": "reference/env_utils.md"
  84. - "FAQ": "faq.md"
  85. plugins:
  86. - glightbox
  87. - search
  88. - include-markdown
  89. - mkdocstrings:
  90. default_handler: python
  91. handlers:
  92. python:
  93. paths: [sweagent]
  94. repo_url: https://github.com/princeton-nlp/SWE-agent
  95. repo_name: princeton-nlp/SWE-agent
  96. edit_uri: edit/main/docs/