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