Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye Gomez authored and Kye Gomez committed Jun 15, 2024
1 parent 731e0e9 commit 3c73261
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 76 deletions.
70 changes: 0 additions & 70 deletions docs/community/ecosystem.md

This file was deleted.

6 changes: 3 additions & 3 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ nav:
- Contributing: "contributing.md"
- Multi-Agent Repository Template: "swarms/install/multi_agent_template.md"
- Framework:
- Overview: "swarms/index.md"
- Overview: "swarms/framework/index.md"
- Models:
- Overview: "swarms/models/index.md"
- How to Create A Custom Language Model: "swarms/models/custom_model.md"
Expand Down Expand Up @@ -134,6 +134,7 @@ nav:
- GPT4VisionAPI: "swarms/models/gpt4v.md"
- GPT4o: "swarms/models/gpt4o.md"
- Agents:
- Agent: "swarms/structs/agent.md"
- Overview: "swarms/structs/diy_your_own_agent.md"
- Tools:
- Functions, Pydantic BaseModels, and More: "swarms/tools/main.md"
Expand All @@ -142,12 +143,11 @@ nav:
- ShortTermMemory: "swarms/memory/short_term_memory.md"
- Structs:
- Foundational Structures:
- Agent: "swarms/structs/agent.md"
- BaseStructure: "swarms/structs/basestructure.md"
- Task: "swarms/structs/task.md"
- YamlModel: "swarms/structs/yaml_model.md"
- BaseWorkflow: "swarms/structs/baseworkflow.md"
- Workflows:
- BaseWorkflow: "swarms/structs/baseworkflow.md"
- ConcurrentWorkflow: "swarms/structs/concurrentworkflow.md"
- SequentialWorkflow: "swarms/structs/sequential_workflow.md"
- Multi Agent Architectures:
Expand Down
Empty file added docs/swarms/framework/index.md
Empty file.
4 changes: 1 addition & 3 deletions playground/structs/search_arena/search_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,7 @@ def run(self, task: str) -> Dict[str, Any]:
if not isinstance(task, str):
raise TypeError("Task must be a string")

headers = {
"X-API-Key": os.getenv("YOU_API_KEY")
}
headers = {"X-API-Key": os.getenv("YOU_API_KEY")}
params = {"query": task}

try:
Expand Down

0 comments on commit 3c73261

Please sign in to comment.