| 1 | site_name: mini-SWE-agent documentation
|
| 2 | site_url: https://mini-swe-agent.com
|
| 3 | theme:
|
| 4 | name: material
|
| 5 | icon:
|
| 6 | repo: fontawesome/brands/github
|
| 7 | annotation: material/chevron-right-circle
|
| 8 | custom_dir: docs/overrides
|
| 9 | logo: assets/mini_square.svg
|
| 10 | favicon: assets/mini_square.svg
|
| 11 | palette:
|
| 12 | - media: "(prefers-color-scheme)"
|
| 13 | toggle:
|
| 14 | icon: material/brightness-auto
|
| 15 | name: Switch to light mode
|
| 16 | - scheme: default
|
| 17 | # primary: black # override in custom.css
|
| 18 | accent: deep orange
|
| 19 | media: "(prefers-color-scheme: light)"
|
| 20 | toggle:
|
| 21 | icon: material/weather-night
|
| 22 | name: Switch to dark mode
|
| 23 | - scheme: slate
|
| 24 | # primary: black # override in custom.css
|
| 25 | accent: deep orange
|
| 26 | media: "(prefers-color-scheme: dark)"
|
| 27 | toggle:
|
| 28 | icon: material/weather-sunny
|
| 29 | name: Switch to light mode
|
| 30 | features:
|
| 31 | - navigation.indexes
|
| 32 | - navigation.top
|
| 33 | - content.action.edit
|
| 34 | - navigation.footer
|
| 35 | - content.code.copy
|
| 36 | - content.footnote.tooltips
|
| 37 | - header.autohide
|
| 38 | - announce.dismiss
|
| 39 | - content.code.annotate
|
| 40 | - navigation.tabs
|
| 41 | - navigation.tabs.sticky
|
| 42 | markdown_extensions:
|
| 43 | - admonition
|
| 44 | - pymdownx.details
|
| 45 | - pymdownx.tabbed:
|
| 46 | alternate_style: true
|
| 47 | - pymdownx.superfences:
|
| 48 | custom_fences:
|
| 49 | - name: mermaid
|
| 50 | class: mermaid
|
| 51 | format: !!python/name:pymdownx.superfences.fence_code_format
|
| 52 | - pymdownx.magiclink
|
| 53 | - footnotes
|
| 54 | - attr_list
|
| 55 | - md_in_html
|
| 56 | - pymdownx.snippets:
|
| 57 | check_paths: true
|
| 58 | - pymdownx.emoji:
|
| 59 | emoji_index: !!python/name:material.extensions.emoji.twemoji
|
| 60 | emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
| 61 | nav:
|
| 62 | - Getting Started:
|
| 63 | - "Overview": index.md
|
| 64 | - "Quick start": quickstart.md
|
| 65 | - "Command line usage":
|
| 66 | - "<code>mini</code>": usage/mini.md
|
| 67 | - "Config": usage/config.md
|
| 68 | - "SWE-bench": usage/swebench.md
|
| 69 | - "Inspector": usage/inspector.md
|
| 70 | - "Output files": usage/output_files.md
|
| 71 | - "Language models":
|
| 72 | - "Quick start": models/quickstart.md
|
| 73 | - "Local models": models/local_models.md
|
| 74 | - "Troubleshooting": models/troubleshooting.md
|
| 75 | - "Configuration":
|
| 76 | - "Global configuration": advanced/global_configuration.md
|
| 77 | - "Yaml config files": advanced/yaml_configuration.md
|
| 78 | - "Python bindings & more":
|
| 79 | - "Basic Python bindings": usage/python_bindings.md
|
| 80 | - "Understanding the agent": advanced/control_flow.md
|
| 81 | - "Subclassing and more": advanced/cookbook.md
|
| 82 | - "Environments": advanced/environments.md
|
| 83 | - "v2 migration guide": advanced/v2_migration.md
|
| 84 | - "FAQ": faq.md
|
| 85 | - "Contributing": contributing.md
|
| 86 | - API Reference:
|
| 87 | - "reference/index.md"
|
| 88 | - Agents:
|
| 89 | - "DefaultAgent": "reference/agents/default.md"
|
| 90 | - "InteractiveAgent": "reference/agents/interactive.md"
|
| 91 | - Models:
|
| 92 | - "Overview": "reference/models/overview.md"
|
| 93 | - "LitellmModel": "reference/models/litellm.md"
|
| 94 | - "LitellmResponseModel": "reference/models/litellm_response_toolcall.md"
|
| 95 | - "OpenRouterModel": "reference/models/openrouter.md"
|
| 96 | - "RequestyModel": "reference/models/requesty.md"
|
| 97 | - "DeterministicModel": "reference/models/test_models.md"
|
| 98 | - "Extra Models": "reference/models/extra.md"
|
| 99 | - "Model Utilities": "reference/models/utils.md"
|
| 100 | - Environments:
|
| 101 | - "LocalEnvironment": "reference/environments/local.md"
|
| 102 | - "DockerEnvironment": "reference/environments/docker.md"
|
| 103 | - "SingularityEnvironment": "reference/environments/singularity.md"
|
| 104 | - "SwerexDockerEnvironment": "reference/environments/swerex_docker.md"
|
| 105 | - "BubblewrapEnvironment": "reference/environments/bubblewrap.md"
|
| 106 | - Run Scripts:
|
| 107 | - "Hello World": "reference/run/hello_world.md"
|
| 108 | - "mini": "reference/run/mini.md"
|
| 109 | - "mini-extra": "reference/run/mini_extra.md"
|
| 110 | - "Config": "reference/run/config.md"
|
| 111 | - "Inspector": "reference/run/inspector.md"
|
| 112 | - "SWE-bench (batch)": "reference/run/swebench.md"
|
| 113 | - "SWE-bench (single)": "reference/run/swebench_single.md"
|
| 114 | - Blog: https://www.swebench.com/blog.html
|
| 115 | - Leaderboard: https://swebench.com
|
| 116 | plugins:
|
| 117 | - redirects:
|
| 118 | redirect_maps:
|
| 119 | 'advanced/local_models.md': 'models/local_models.md'
|
| 120 | - glightbox
|
| 121 | - search
|
| 122 | - include-markdown
|
| 123 | - mike:
|
| 124 | canonical_version: latest
|
| 125 | version_selector: true
|
| 126 | - mkdocstrings:
|
| 127 | default_handler: python
|
| 128 | handlers:
|
| 129 | python:
|
| 130 | paths: [src]
|
| 131 | options:
|
| 132 | merge_init_into_class: true
|
| 133 | summary: false
|
| 134 | show_root_heading: true
|
| 135 | heading_level: 2
|
| 136 | docstring_style: google
|
| 137 | show_if_no_docstring: true
|
| 138 | show_signature: true
|
| 139 | show_signature_annotations: true
|
| 140 | signature_crossrefs: true
|
| 141 | separate_signature: true
|
| 142 | show_symbol_type_heading: true
|
| 143 | show_symbol_type_toc: true
|
| 144 | members_order: source
|
| 145 | filters:
|
| 146 | - "!^_"
|
| 147 | - "!^model_config"
|
| 148 | - "!^model_post_init"
|
| 149 | repo_url: https://github.com/SWE-agent/mini-SWE-agent
|
| 150 | repo_name: SWE-agent/mini-SWE-agent
|
| 151 | edit_uri: edit/main/docs/
|
| 152 | extra_javascript:
|
| 153 | - assets/js/sh-annotation.js
|
| 154 | - assets/js/gif-controls.js
|
| 155 | extra_css:
|
| 156 | - assets/custom.css
|
| 157 | - assets/gif-controls.css
|
| 158 | - assets/mkdocstrings.css
|
| 159 | - assets/image_theme.css
|
| 160 | - assets/bubbles.css
|
| 161 | - assets/navigation_cards.css
|
| 162 | - https://fonts.googleapis.com/icon?family=Material+Icons
|
| 163 | extra:
|
| 164 | version:
|
| 165 | provider: mike
|
| 166 | analytics:
|
| 167 | provider: google
|
| 168 | property: G-SG2NC1GDRD
|
| 169 |
|