indentation 2

pull/483/head
evelynmitchell 1 year ago
parent 51f7356f0c
commit 1cd6584afe

@ -1,4 +1,4 @@
docs_dir: 'docs' # replace with the correct path if your documentation files are not in the same directory as mkdocs.yml docs_dir: 'docs'
site_name: "Swarms Documentation" site_name: "Swarms Documentation"
site_url: https://swarms.world site_url: https://swarms.world
site_author: Swarms site_author: Swarms
@ -14,10 +14,10 @@ plugins:
- search - search
- git-authors - git-authors
- mkdocs-jupyter: - mkdocs-jupyter:
kernel_name: python3 kernel_name: python3
execute: false execute: false
include_source: True include_source: True
include_requirejs: true include_requirejs: true
- mkdocstrings: - mkdocstrings:
default_handler: python default_handler: python
handlers: handlers:
@ -49,15 +49,14 @@ extra:
- icon: fontawesome/brands/github - icon: fontawesome/brands/github
link: https://github.com/kyegomez/swarms link: https://github.com/kyegomez/swarms
theme: theme:
name: material name: material
custom_dir: overrides custom_dir: overrides
logo: assets/img/SwarmsLogoIcon.png logo: assets/img/SwarmsLogoIcon.png
palette: palette: # Palette toggle for light mode
# Palette toggle for light mode
- scheme: default - scheme: default
primary: black primary: black
toggle: toggle:
icon: material/brightness-7 icon: material/brightness-7
name: Switch to dark mode name: Switch to dark mode
# Palette toggle for dark mode # Palette toggle for dark mode
- scheme: slate - scheme: slate
@ -65,14 +64,14 @@ theme:
toggle: toggle:
icon: material/brightness-4 icon: material/brightness-4
name: Switch to light mode name: Switch to light mode
features: features:
- content.code.copy - content.code.copy
- content.code.annotate - content.code.annotate
- navigation.tabs - navigation.tabs
- navigation.sections - navigation.sections
- navigation.expand - navigation.expand
- navigation.top - navigation.top
- announce.dismiss - announce.dismiss
markdown_extensions: markdown_extensions:
- pymdownx.highlight: - pymdownx.highlight:
anchor_linenums: true anchor_linenums: true
@ -89,31 +88,31 @@ markdown_extensions:
- footnotes - footnotes
nav: nav:
- Home: - Home:
- Installation: - Installation:
- Overview: "index.md" - Overview: "index.md"
- Install: "swarms/install/install.md" - Install: "swarms/install/install.md"
- Docker Setup: "swarms/install/docker_setup.md" - Docker Setup: "swarms/install/docker_setup.md"
- Usage Examples: - Usage Examples:
- Models: - Models:
- How to Create A Custom Language Model: "swarms/models/custom_model.md" - How to Create A Custom Language Model: "swarms/models/custom_model.md"
- Models Available: "swarms/models/index.md" - Models Available: "swarms/models/index.md"
- MultiModal Models Available: "swarms/models/multimodal_models.md" - MultiModal Models Available: "swarms/models/multimodal_models.md"
- Agents: - Agents:
- Getting started with Agents: "swarms/structs/diy_your_own_agent.md" - Getting started with Agents: "swarms/structs/diy_your_own_agent.md"
- Tools: - Tools:
- Functions, Pydantic BaseModels, and More: "swarms/tools/main.md" - Functions, Pydantic BaseModels, and More: "swarms/tools/main.md"
- Memory: - Memory:
- Building Custom Vector Memory Databases with the BaseVectorDatabase Class: "swarms/memory/diy_memory.md" - Building Custom Vector Memory Databases with the BaseVectorDatabase Class: "swarms/memory/diy_memory.md"
- ShortTermMemory: "swarms/memory/short_term_memory.md" - ShortTermMemory: "swarms/memory/short_term_memory.md"
- Multi-Agent Collaboration: - Multi-Agent Collaboration:
- SwarmNetwork: "swarms/structs/swarmnetwork.md" - SwarmNetwork: "swarms/structs/swarmnetwork.md"
- AgentRearrange: "swarms/structs/agent_rearrange.md" - AgentRearrange: "swarms/structs/agent_rearrange.md"
- Why does Swarms Exist?: - Why does Swarms Exist?:
- References: - References:
- Agent Glossary: "swarms/glossary.md" - Agent Glossary: "swarms/glossary.md"
- List of The Best Multi-Agent Papers: "swarms/papers.md" - List of The Best Multi-Agent Papers: "swarms/papers.md"
- Contributors: - Contributors:
- Contributing: "contributing.md" - Contributing: "contributing.md"
- Reference: - Reference:
- Overview: "swarms/index.md" - Overview: "swarms/index.md"
- Framework Structure: "swarms/structs/tree.md" - Framework Structure: "swarms/structs/tree.md"
@ -170,4 +169,4 @@ nav:
- DIY Build Your Own Agent: "diy_your_own_agent.md" - DIY Build Your Own Agent: "diy_your_own_agent.md"
- Equipping Autonomous Agents with Tools: "examples/tools_agent.md" - Equipping Autonomous Agents with Tools: "examples/tools_agent.md"
- Swarms: - Swarms:
- SequentialWorkflow: "examples/reliable_autonomous_agents.md" - SequentialWorkflow: "examples/reliable_autonomous_agents.md"
Loading…
Cancel
Save