forked from mozilla-ai/any-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
87 lines (80 loc) · 2.21 KB
/
Copy pathmkdocs.yml
File metadata and controls
87 lines (80 loc) · 2.21 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
site_name: any-agent
repo_url: https://github.com/mozilla-ai/any-agent
repo_name: any-agent
nav:
- Intro: index.md
- Agents:
- Defining and Running Agents: agents/index.md
- Callbacks: agents/callbacks.md
- Frameworks:
- Agno: agents/frameworks/agno.md
- Google ADK: agents/frameworks/google_adk.md
- Langchain: agents/frameworks/langchain.md
- LlamaIndex: agents/frameworks/llama_index.md
- OpenAI Agents SDK: agents/frameworks/openai.md
- smolagents: agents/frameworks/smolagents.md
- TinyAgent: agents/frameworks/tinyagent.md
- Tools: agents/tools.md
- Tracing: tracing.md
- Evaluation: evaluation.md
- Serving: serving.md
- Cookbook:
- Your First Agent: cookbook/your_first_agent.ipynb
- Using Callbacks: cookbook/callbacks.ipynb
- MCP Agent: cookbook/mcp_agent.ipynb
- Serve with A2A: cookbook/serve_a2a.ipynb
- Use an Agent as a tool for another agent (A2A): cookbook/a2a_as_tool.ipynb
- API Reference:
- Agent: api/agent.md
- Callbacks: api/callbacks.md
- Config: api/config.md
- Evaluation: api/evaluation.md
- Logging: api/logging.md
- Serving: api/serving.md
- Tools: api/tools.md
- Tracing: api/tracing.md
theme:
name: material
palette:
- scheme: default
primary: black
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: grey
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
logo: images/any-agent-logo-mark.png
favicon: images/any-agent_favicon.png
features:
- content.code.copy
- content.tabs.link
- content.action.edit
extra_css:
- assets/custom.css
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- include-markdown
- mkdocs-jupyter:
no_input: false
show_input: true
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
heading_level: 3
edit_uri: edit/main/docs/