Swarm Squad: A simulation framework for multi-agent systems
Project description
✨ Key Features
-
Agent Simulation: Swarm Squad allows you to simulate the behavior of multiple agents in a controlled environment. This is essential for testing how agents interact with each other and their environment.
-
Scalability: It should be able to handle a large number of agents simultaneously. This is important for testing the system's performance under various load conditions.
-
Behavior Specification: Swarm Squad may include a way to define and specify the expected behavior of agents. This can be used to evaluate whether the agents are acting as intended.
-
Environment Modeling: It provides tools for creating and managing the environment in which the agents operate. This could be a physical or virtual space with obstacles, goals, or other entities.
-
Metrics and Analytics: The framework likely offers mechanisms for collecting and analyzing data on agent behavior. This could include metrics like speed, coordination, efficiency, or any other relevant performance indicators.
-
Customization and Extensibility: It should allow users to customize and extend the framework to suit their specific needs. This might involve adding new types of agents, modifying the environment, or defining custom evaluation criteria.
-
Visualization and Reporting: Swarm Squad may include tools for visualizing the simulation in real-time or for generating reports after a simulation run. This helps in understanding and communicating the results.
-
Integration with Other Tools: It may have the capability to integrate with other software or libraries commonly used in multi-agent systems development, such as reinforcement learning libraries, communication protocols, or visualization tools.
-
Support for Various Types of Agents: Swarm Squad should be versatile enough to support different types of agents, such as robots, drones, and autonomous vehicles.
-
Documentation and Support: Proper documentation and support resources are essential for users to effectively utilize the framework.
🚀 Getting Started
-
Clone the repository and navigate to project folder:
git clone https://github.com/Sang-Buster/Swarm-Squad cd Swarm-Squad
-
Install uv first:
# macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
-
Create a virtual environment at
Swarm-Squad/.venv/:uv venv --python 3.12.1
-
Activate the virtual environment:
# macOS/Linux source .venv/bin/activate
# Windows .venv\Scripts\activate
-
Install the required packages:
uv pip install -r requirements.txt
👨💻 Development Setup
-
Set up environment variables:
# Copy the example environment file cp .env_example .env
Then edit
.envand add your configurations:MAPBOX_ACCESS_TOKEN=your_mapbox_token_here OLLAMA_API_URL=http://localhost:11434- You can get a Mapbox access token by signing up at https://www.mapbox.com/
- Update the
OLLAMA_API_URLif your Ollama instance is running on a different address
-
Install ruff and pre-commit:
uv pip install ruff pre-commit
ruffis a super fast Python linter and formatter.pre-commithelps maintain code quality by running automated checks before commits are made.
-
Install git hooks:
pre-commit install --hook-type commit-msg --hook-type pre-commit --hook-type pre-push
These hooks perform different checks at various stages:
commit-msg: Ensures commit messages follow the conventional formatpre-commit: Runs Ruff linting and formatting checks before each commitpre-push: Performs final validation before pushing to remote
-
Code Linting:
ruff check ruff check --fix ruff check --select I ruff check --select I --fix ruff format
-
Run the application:
python src/app.py
📝 File Structure
📦Swarm Squad
┣ 📂src // Source Code
┃ ┣ 📂assets // Static assets (CSS, images, favicon, etc.)
┃ ┣ 📂components // Reusable UI components
┃ ┣ 📂data // Database files
┃ ┣ 📂pages // Page components and routing
┃ ┣ 📂scripts // Simulation and algorithm scripts
┃ ┣ 📂util // Utility functions and helpers
┃ ┗ 📄app.py // Main Dash application entry point
┣ 📄.env_example // Template for environment variables
┣ 📄.gitignore // Git ignore patterns (env, cache, database)
┣ 📄.pre-commit-config.yaml // Pre-commit hooks (ruff, commit message)
┣ 📄.pre-commit_msg_template.py // Commit message format validator
┣ 📄LICENSE // MIT License
┣ 📄README.md // Project documentation
┗ 📄requirements.txt // Python dependencies
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarm_squad_ep2-0.1.0.tar.gz.
File metadata
- Download URL: swarm_squad_ep2-0.1.0.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
537a544c44fedd91099b5eea9dbc0b31355c5cdcd7751a36eb7e2ed2a5079f87
|
|
| MD5 |
075b22433e60bbeba849bda10a8f9a1e
|
|
| BLAKE2b-256 |
d8729d6ec39b6a2904367832fa7048fed64b986719fdf87d696181a6fe7bc8cb
|
File details
Details for the file swarm_squad_ep2-0.1.0-py3-none-any.whl.
File metadata
- Download URL: swarm_squad_ep2-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e3b06ea7ec3925b011a26998fb5a5a3c7b17c3b68ebef5ca9952b514db2569
|
|
| MD5 |
4810a725778c9c99e6d058bc468054f4
|
|
| BLAKE2b-256 |
c18533596ead14f1d19f7248b0ea5f1c93def82f41b7e9941de2783b553a29a1
|