mkdocs.yml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. site_name: SWE-agent documentation
  2. theme:
  3. name: material
  4. icon:
  5. repo: fontawesome/brands/github
  6. logo: assets/swe-agent.svg
  7. palette:
  8. - media: "(prefers-color-scheme)"
  9. toggle:
  10. icon: material/brightness-auto
  11. name: Switch to light mode
  12. - scheme: default
  13. primary: black
  14. accent: deep orange
  15. media: "(prefers-color-scheme: light)"
  16. toggle:
  17. icon: material/weather-night
  18. name: Switch to dark mode
  19. - scheme: slate
  20. primary: black
  21. accent: deep orange
  22. media: "(prefers-color-scheme: dark)"
  23. toggle:
  24. icon: material/weather-sunny
  25. name: Switch to light mode
  26. features:
  27. - navigation.indexes
  28. - content.action.edit
  29. - navigation.footer
  30. - content.code.copy
  31. - content.footnote.tooltips
  32. markdown_extensions:
  33. - admonition
  34. - pymdownx.details
  35. - pymdownx.superfences
  36. - pymdownx.magiclink
  37. - footnotes
  38. - attr_list
  39. - md_in_html
  40. - pymdownx.emoji:
  41. emoji_index: !!python/name:material.extensions.emoji.twemoji
  42. emoji_generator: !!python/name:material.extensions.emoji.to_svg
  43. nav:
  44. - Home: index.md
  45. - Installation:
  46. - "installation/index.md"
  47. - "Use in-browser": "installation/codespaces.md"
  48. - "Install from source": "installation/source.md"
  49. - "Docker": "installation/docker.md"
  50. - "Adding your keys": "installation/keys.md"
  51. - "Installation tips": "installation/tips.md"
  52. - "Changelog": "installation/changelog.md"
  53. - Usage:
  54. - "usage/index.md"
  55. - "Command line usage": "usage/cl_tutorial.md"
  56. - "Using the web UI": "usage/web_ui.md"
  57. - "Trajectories": "usage/trajectories.md"
  58. - "Trajectory inspector": "usage/inspector.md"
  59. - "FAQ": "usage/faq.md"
  60. - "Benchmarking": "usage/benchmarking.md"
  61. - Configuration:
  62. - "Config files": "config/config.md"
  63. - "Command definitions": "config/commands.md"
  64. - "Demonstrations": "config/demonstrations.md"
  65. - Development:
  66. - "Contribution guide": "dev/contribute.md"
  67. - "Code structure": "dev/code_structure.md"
  68. plugins:
  69. - glightbox
  70. - search
  71. - include-markdown
  72. repo_url: https://github.com/princeton-nlp/SWE-agent
  73. repo_name: princeton-nlp/SWE-agent
  74. edit_uri: edit/main/docs/