forked from CelestoAI/agentor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
82 lines (77 loc) · 2.07 KB
/
mkdocs.yml
File metadata and controls
82 lines (77 loc) · 2.07 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
site_name: Agentor
site_description: Fastest way to build, prototype and deploy AI Agents
site_url: https://celestoai.github.io/agentor
repo_url: https://github.com/CelestoAI/agentor
repo_name: CelestoAI/agentor
exclude_docs: |
README.md
theme:
name: material
palette:
- scheme: default
primary: deep orange
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: deep orange
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
members_order: source
group_by_category: true
show_category_heading: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
nav:
- Home: index.md
- Guides:
- MCP Context: mcp_context.md
- API Reference:
- Overview: api/index.md
- Core:
- Agent: api/core/agent.md
- LLM: api/core/llm.md
- Schema: api/core/schema.md
- Tool Convertor: api/core/tool_convertor.md
- MCP:
- API Router: api/mcp/api_router.md
- Server: api/mcp/server.md
- Proxy: api/mcp/proxy.md
- Tools:
- Registry: api/tools/registry.md
- Base: api/tools/base.md
- Utilities:
- Type Helper: api/utils/type_helper.md
- Output Text Formatter: api/utils/output_text_formatter.md
- Utils: api/utils/utils.md