forked from MervinPraison/PraisonAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
120 lines (105 loc) · 2.87 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
site_name: PraisonAI Documentation
site_url: https://docs.praison.ai
site_author: MervinPraison
repo_name: MervinPraison/PraisonAI
repo_url: https://github.com/MervinPraison/PraisonAI
nav:
- 🏠 Home:
- Home: index.md
- TL;DR: tldr.md
- ⚡ Getting Started:
- Installation: installation.md
- Initialise: initialise.md
- Run: run.md
- Full Automatic: auto.md
- User Interface: ui/ui.md
- Chat: ui/chat.md
- Code: ui/code.md
- Train: train.md
- CrewAI: framework/crewai.md
- AutoGen: framework/autogen.md
- 🧠 Models:
- Models: models.md
- OpenAI: models/openai.md
- Groq: models/groq.md
- Google Gemini: models/google.md
- Anthropic Claude: models/anthropic.md
- Cohere: models/cohere.md
- Mistral: models/mistral.md
- OpenRouter: models/openrouter.md
- Ollama: models/ollama.md
- Other Models: models/other.md
- ⚙️ Tools:
- Tools: tools.md
- Create Custom Tools: tools/custom.md
- Tools Creator GPT: tools/gpt.md
- DuckDuckGo: tools/duckduckgo.md
- Langchain: tools/langchain.md
- Firecrawl: firecrawl.md
- Wikipedia: tools/wikipedia.md
- YouTube: tools/youtube.md
- Tavily: tools/tavily.md
- Reddit: tools/reddit.md
- You.com: tools/you.com.md
- Crawl4AI: tools/crawl4ai.md
- mem0: tools/mem0.md
- 📊 Monitoring:
- AgentOps: monitoring/agentops.md
- 📚 Developers:
- Test: developers/test.md
- Agents Playbook: developers/agents-playbook.md
- Wrapper: developers/wrapper.md
- Wrapper with Tools: developers/wrapper-tools.md
- Google Colab: developers/googlecolab.md
- Google Colab Tools: developers/googlecolab-tools.md
- Deploy: deploy.md
- 🤗 Contributing:
- Contribute: contributing.md
- 🛠️ API reference:
- API: api.md
- API Code: api/praisonai/index.html
theme:
name: material
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- header.autohide
- content.code.annotate
- content.tooltips
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to light mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to dark mode
markdown_extensions:
- admonition
- attr_list
- md_in_html
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.details
plugins:
- search
- mkdocstrings:
handlers:
python:
selection:
docstring_style: google
# - glightbox
extra_css:
- overrides/css/custom.css
extra_javascript:
- overrides/js/custom.js
extra:
custom_dir: docs/overrides