mirror of
https://github.com/crewAIInc/crewAI.git
synced 2025-12-15 20:08:29 +00:00
Signed-off-by: Tomu Hirata <tomu.hirata@gmail.com> Co-authored-by: Brandon Hancock (bhancock_ai) <109994880+bhancockio@users.noreply.github.com>
217 lines
7.8 KiB
YAML
217 lines
7.8 KiB
YAML
site_name: crewAI
|
|
site_author: crewAI, Inc
|
|
site_description: Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.
|
|
repo_name: crewAI
|
|
repo_url: https://github.com/crewAIInc/crewAI
|
|
site_url: https://docs.crewai.com
|
|
edit_uri: edit/main/docs/
|
|
copyright: Copyright © 2024 crewAI, Inc
|
|
|
|
markdown_extensions:
|
|
- abbr
|
|
- admonition
|
|
- pymdownx.details
|
|
- attr_list
|
|
- def_list
|
|
- footnotes
|
|
- md_in_html
|
|
- toc:
|
|
permalink: true
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
- pymdownx.betterem:
|
|
smart_enable: all
|
|
- pymdownx.caret
|
|
- pymdownx.emoji:
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.keys
|
|
- pymdownx.magiclink:
|
|
normalize_issue_symbols: true
|
|
repo_url_shorthand: true
|
|
user: joaomdmoura
|
|
repo: crewAI
|
|
- pymdownx.mark
|
|
- pymdownx.smartsymbols
|
|
- pymdownx.snippets:
|
|
auto_append:
|
|
- includes/mkdocs.md
|
|
- pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
combine_header_slug: true
|
|
slugify: !!python/object/apply:pymdownx.slugs.slugify
|
|
kwds:
|
|
case: lower
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.tilde
|
|
theme:
|
|
name: material
|
|
language: en
|
|
icon:
|
|
repo: fontawesome/brands/github
|
|
edit: material/pencil
|
|
view: material/eye
|
|
admonition:
|
|
note: octicons/light-bulb-16
|
|
abstract: octicons/checklist-16
|
|
info: octicons/info-16
|
|
tip: octicons/squirrel-16
|
|
success: octicons/check-16
|
|
question: octicons/question-16
|
|
warning: octicons/alert-16
|
|
failure: octicons/x-circle-16
|
|
danger: octicons/zap-16
|
|
bug: octicons/bug-16
|
|
example: octicons/beaker-16
|
|
quote: octicons/quote-16
|
|
|
|
palette:
|
|
- scheme: default
|
|
primary: deep orange
|
|
accent: deep orange
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: deep orange
|
|
accent: deep orange
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
features:
|
|
- announce.dismiss
|
|
- content.action.edit
|
|
- content.action.view
|
|
- content.code.annotate
|
|
- content.code.copy
|
|
- content.code.select
|
|
- content.tabs.link
|
|
- content.tooltips
|
|
- header.autohide
|
|
- navigation.footer
|
|
- navigation.indexes
|
|
# - navigation.prune
|
|
# - navigation.sections
|
|
# - navigation.tabs
|
|
- search.suggest
|
|
- navigation.instant
|
|
- navigation.instant.progress
|
|
- navigation.instant.prefetch
|
|
- navigation.tracking
|
|
# - navigation.expand
|
|
- navigation.path
|
|
- navigation.top
|
|
- toc.follow
|
|
- toc.integrate
|
|
- search.highlight
|
|
- search.share
|
|
|
|
nav:
|
|
- Home: '/'
|
|
- Getting Started:
|
|
- Installing CrewAI: 'getting-started/Installing-CrewAI.md'
|
|
- Starting a new CrewAI project: 'getting-started/Start-a-New-CrewAI-Project-Template-Method.md'
|
|
- Core Concepts:
|
|
- Agents: 'core-concepts/Agents.md'
|
|
- Tasks: 'core-concepts/Tasks.md'
|
|
- Tools: 'core-concepts/Tools.md'
|
|
- Processes: 'core-concepts/Processes.md'
|
|
- Crews: 'core-concepts/Crews.md'
|
|
- Collaboration: 'core-concepts/Collaboration.md'
|
|
- Training: 'core-concepts/Training-Crew.md'
|
|
- Memory: 'core-concepts/Memory.md'
|
|
- Planning: 'core-concepts/Planning.md'
|
|
- Testing: 'core-concepts/Testing.md'
|
|
- Using LangChain Tools: 'core-concepts/Using-LangChain-Tools.md'
|
|
- Using LlamaIndex Tools: 'core-concepts/Using-LlamaIndex-Tools.md'
|
|
- How to Guides:
|
|
- Create Custom Tools: 'how-to/Create-Custom-Tools.md'
|
|
- Using Sequential Process: 'how-to/Sequential.md'
|
|
- Using Hierarchical Process: 'how-to/Hierarchical.md'
|
|
- Create your own Manager Agent: 'how-to/Your-Own-Manager-Agent.md'
|
|
- Connecting to any LLM: 'how-to/LLM-Connections.md'
|
|
- Customizing Agents: 'how-to/Customizing-Agents.md'
|
|
- Coding Agents: 'how-to/Coding-Agents.md'
|
|
- Forcing Tool Output as Result: 'how-to/Force-Tool-Ouput-as-Result.md'
|
|
- Human Input on Execution: 'how-to/Human-Input-on-Execution.md'
|
|
- Kickoff a Crew Asynchronously: 'how-to/Kickoff-async.md'
|
|
- Kickoff a Crew for a List: 'how-to/Kickoff-for-each.md'
|
|
- Replay from a specific task from a kickoff: 'how-to/Replay-tasks-from-latest-Crew-Kickoff.md'
|
|
- Conditional Tasks: 'how-to/Conditional-Tasks.md'
|
|
- Agent Monitoring with AgentOps: 'how-to/AgentOps-Observability.md'
|
|
- Agent Monitoring with LangTrace: 'how-to/Langtrace-Observability.md'
|
|
- Agent Monitoring with OpenLIT: 'how-to/openlit-Observability.md'
|
|
- Agent Monitoring with MLflow: 'how-to/mlflow-Observability.md'
|
|
- Tools Docs:
|
|
- Browserbase Web Loader: 'tools/BrowserbaseLoadTool.md'
|
|
- Code Docs RAG Search: 'tools/CodeDocsSearchTool.md'
|
|
- Code Interpreter: 'tools/CodeInterpreterTool.md'
|
|
- Composio Tools: 'tools/ComposioTool.md'
|
|
- CSV RAG Search: 'tools/CSVSearchTool.md'
|
|
- DALL-E Tool: 'tools/DALL-ETool.md'
|
|
- Directory RAG Search: 'tools/DirectorySearchTool.md'
|
|
- Directory Read: 'tools/DirectoryReadTool.md'
|
|
- Docx Rag Search: 'tools/DOCXSearchTool.md'
|
|
- EXA Search Web Loader: 'tools/EXASearchTool.md'
|
|
- File Read: 'tools/FileReadTool.md'
|
|
- File Write: 'tools/FileWriteTool.md'
|
|
- Firecrawl Crawl Website Tool: 'tools/FirecrawlCrawlWebsiteTool.md'
|
|
- Firecrawl Scrape Website Tool: 'tools/FirecrawlScrapeWebsiteTool.md'
|
|
- Firecrawl Search Tool: 'tools/FirecrgstawlSearchTool.md'
|
|
- Github RAG Search: 'tools/GitHubSearchTool.md'
|
|
- Google Serper Search: 'tools/SerperDevTool.md'
|
|
- JSON RAG Search: 'tools/JSONSearchTool.md'
|
|
- MDX RAG Search: 'tools/MDXSearchTool.md'
|
|
- MySQL Tool: 'tools/MySQLTool.md'
|
|
- NL2SQL Tool: 'tools/NL2SQLTool.md'
|
|
- PDF RAG Search: 'tools/PDFSearchTool.md'
|
|
- PG RAG Search: 'tools/PGSearchTool.md'
|
|
- Scrape Website: 'tools/ScrapeWebsiteTool.md'
|
|
- Selenium Scraper: 'tools/SeleniumScrapingTool.md'
|
|
- Spider Scraper: 'tools/SpiderTool.md'
|
|
- TXT RAG Search: 'tools/TXTSearchTool.md'
|
|
- Vision Tool: 'tools/VisionTool.md'
|
|
- Website RAG Search: 'tools/WebsiteSearchTool.md'
|
|
- XML RAG Search: 'tools/XMLSearchTool.md'
|
|
- Youtube Channel RAG Search: 'tools/YoutubeChannelSearchTool.md'
|
|
- Youtube Video RAG Search: 'tools/YoutubeVideoSearchTool.md'
|
|
- Examples:
|
|
- Trip Planner Crew: https://github.com/joaomdmoura/crewAI-examples/tree/main/trip_planner"
|
|
- Create Instagram Post: https://github.com/joaomdmoura/crewAI-examples/tree/main/instagram_post"
|
|
- Stock Analysis: https://github.com/joaomdmoura/crewAI-examples/tree/main/stock_analysis"
|
|
- Game Generator: https://github.com/joaomdmoura/crewAI-examples/tree/main/game-builder-crew"
|
|
- Drafting emails with LangGraph: https://github.com/joaomdmoura/crewAI-examples/tree/main/CrewAI-LangGraph"
|
|
- Landing Page Generator: https://github.com/joaomdmoura/crewAI-examples/tree/main/landing_page_generator"
|
|
- Prepare for meetings: https://github.com/joaomdmoura/crewAI-examples/tree/main/prep-for-a-meeting"
|
|
- Telemetry: 'telemetry/Telemetry.md'
|
|
- Change Log: 'https://github.com/crewAIInc/crewAI/releases'
|
|
|
|
extra_css:
|
|
- stylesheets/output.css
|
|
- stylesheets/extra.css
|
|
|
|
plugins:
|
|
- social
|
|
- search
|
|
|
|
extra:
|
|
analytics:
|
|
provider: google
|
|
property: G-N3Q505TMQ6
|
|
social:
|
|
- icon: fontawesome/brands/x-twitter
|
|
link: https://x.com/crewAIInc
|
|
- icon: fontawesome/brands/github
|
|
link: https://github.com/crewAIInc/crewAI
|