-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
101 lines (95 loc) · 2.64 KB
/
mkdocs.yml
File metadata and controls
101 lines (95 loc) · 2.64 KB
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
site_name: GeoAgent
site_description: An AI agent for geospatial data analysis and visualization
site_author: Qiusheng Wu
site_url: https://geoagent.gishub.org
repo_url: https://github.com/opengeos/GeoAgent
copyright: "Copyright © 2026 Qiusheng Wu"
theme:
palette:
- scheme: default
primary: blue
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to light mode
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tracking
- navigation.top
- search.highlight
- search.share
- content.code.copy
custom_dir: "docs/overrides"
font:
text: Google Sans
code: Regular
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: true
show_root_heading: true
heading_level: 3
- git-revision-date
- git-revision-date-localized:
enable_creation_date: true
type: timeago
- mkdocs-jupyter:
include_source: true
ignore_h1_titles: true
execute: false
allow_errors: false
ignore: ["conf.py"]
execute_ignore: ["*ignore.ipynb"]
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Usage: usage.md
- Changelog: https://github.com/opengeos/GeoAgent/releases
- Report Issues: https://github.com/opengeos/GeoAgent/issues
- Contributing: contributing.md
- Examples:
- examples/intro.ipynb
- examples/stac_search.ipynb
- examples/maplibre_viz.ipynb
- examples/earth_science_queries.ipynb
- examples/contextual_qa.ipynb
- examples/event_monitoring.ipynb
- API Reference:
- GeoAgent: geoagent.md
- Models: models.md
- Planner: planner.md
- Data Agent: data_agent.md
- Analysis Agent: analysis_agent.md
- Visualization Agent: viz_agent.md
- LLM: llm.md
- Catalogs: catalogs.md
- Tools: tools.md
- Web UI: ui.md