-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
98 lines (95 loc) · 2.79 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
site_name: FastAPI Agents
site_url: https://fastapi-agents.blairhudson.com
repo_url: https://github.com/blairhudson/fastapi-agents
repo_name: blairhudson/fastapi-agents
nav:
- Home: index.md
- API Reference:
- fastapi_agents: api/index.md
- fastapi_agents.models: api/models.md
- fastapi_agents.errors: api/errors.md
- Frameworks:
- fastapi_agents.pydantic_ai: api/pydantic_ai.md
- fastapi_agents.llama_index: api/llama_index.md
- fastapi_agents.smolagents: api/smolagents.md
- fastapi_agents.crewai: api/crewai.md
- Docker: docker.md
- Guides:
- Getting Started with FastAPI Agents: notebooks/getting-started.ipynb
- Mixing Frameworks with Auto-detection: notebooks/mixing-frameworks-with-auto-detection.ipynb
- Using OpenAI Mode: notebooks/using-openai-mode.ipynb
- Example Code: examples.md
- Roadmap: roadmap.md
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.footer
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.path
- toc.integrate
- navigation.top
plugins:
- mkdocs-jupyter:
include_source: true
include:
- "notebooks/*.ipynb"
- git-committers:
repository: blairhudson/fastapi-agents
branch: main
- git-revision-date-localized:
enable_creation_date: true
fallback_to_build_date: true
type: timeago
- search
- include-markdown
- mkdocstrings: # For auto-generating API documentation from your Python package
handlers:
python:
options:
show_object_full_path: false
heading_level: 1
show_source: false
summary: true
show_bases: false
paths: ["../fastapi_agents"] # Adjust path to point to the package
copyright: "FastAPI Agents © 2025 Blair Hudson"
extra:
generator: false
version:
provider: git
social:
- icon: fontawesome/brands/github
link: https://github.com/blairhudson/fastapi-agents
- icon: simple/zenodo
link: https://doi.org/10.5281/zenodo.14635504
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/blairhudson
- icon: fontawesome/brands/x-twitter
link: https://x.com/blairhudson
edit_uri: "edit/main/docs"
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- def_list
- pymdownx.tasklist:
custom_checkbox: true
# hooks:
# - docs/hooks.py