diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index ceed07f1..f78bb203 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -132,12 +132,12 @@ markdown_extensions: nav: - Home: - Overview: "index.md" - - The Vision: "swarms/framework/vision.md" + # - The Vision: "swarms/framework/vision.md" - Philosophy: "swarms/concept/philosophy.md" - Install: "swarms/install/install.md" - Swarms Framework Architecture: "swarms/concept/framework_architecture.md" - - Docker Setup: "swarms/install/docker_setup.md" - - Multi-Agent Repository Template: "swarms/install/multi_agent_template.md" + # - Docker Setup: "swarms/install/docker_setup.md" + # - Multi-Agent Repository Template: "swarms/install/multi_agent_template.md" - Agents: # - Overview: "swarms/structs/index.md" - Agent Architecture: "swarms/framework/agents_explained.md" diff --git a/docs/swarms/concept/framework_architecture.md b/docs/swarms/concept/framework_architecture.md index 8d82aebc..56c5c455 100644 --- a/docs/swarms/concept/framework_architecture.md +++ b/docs/swarms/concept/framework_architecture.md @@ -11,7 +11,7 @@ swarms/ ├── artifacts/ ├── cli/ ├── memory/ -├── models/ +├── models/ ---> Moved to swarm_models ├── prompts/ ├── schemas/ ├── structs/ @@ -66,7 +66,7 @@ The **Swarms framework** is composed of several key folders, each serving a spec --- -### **5. Models Folder (`models/`)** +### **5. Models Folder (`models/`) Moved to `swarm_models`** - **Role:** - The **models** folder houses pre-trained machine learning models that agents utilize to complete their tasks. These models could include LLMs (Large Language Models), custom-trained models, or fine-tuned models specific to the tasks being handled by the agents. - **Plug-and-Play Architecture:** The framework allows users to easily add or switch models depending on the specific needs of their agents.