Python-based framework for heterogeneous agent communities
Project description
PEAK: Python-based framework for heterogenous agent communities
PEAK is a multi-agent system framework which helps the users develop, monitor, analyze and maintain ecosystem of heterogeneous agent communities. This ecosystem is where various multi-agent systems can coexist, interact and share resources between them. This framework is based on SPADE.
Prerequisites
- Python == 3.9.6
- XMPP Server (see docs)
Installing PEAK
Conda
To install using conda, download the environment.yml file from the repository and then use the following command:
$ conda env create --file environment.yml
This will create a conda environment called peak.
Pip
To install using pip, just type the following command:
$ pip install peak-mas
Using PEAK
Notes on SPADE
As already said PEAK is based on SPADE. This means that every functionality of SPADE is available to the user. We highly recommend you to see SPADE examples and documentation before starting using PEAK. Once you are familiarized with SPADE's mechanics you can start using PEAK.
Notes on XMPP
To run any PEAK's agent you will need a XMPP server. You can either configure one on your machine, remotely or use a public server. The only issue with the public servers is that they don't usually have all the configurations required to run some PEAK's functionalities. To configure the server you can read the "Configure XMPP server" section in the documentation.
Hello World Agent Example
One thing that was added in PEAK was the way the user executes the agents. PEAK added a CLI, inspired in JADE, to help the user execute end configure each agent in a easy and intuitive manner.
In this example we will show you how to execute a single agent. Save the following code in a file called agent.py
.
from peak import Agent
from peak.behaviours import OneShotBehaviour
class agent(Agent):
class HelloWorld(OneShotBehaviour):
async def run(self) -> None:
print("Hello World")
await self.agent.stop()
async def setup(self) -> None:
self.add_behaviour(self.HelloWorld())
It is necessary that the name of the file is the same as the name of the agent's class so PEAK can do the proper parsing. This agent only has a behavior that prints to the terminal the "Hello World" message. To execute the agent just type the following command:
$ peak run path/to/agent.py -j agent@localhost
Change the localhost
to the domain of the XMPP server you want to connect.
Note
If you want to know more about each command we recommend reading the documentation or using the -h
option to see the help message.
For more advanced functionalities and examples we recommend you to head forward to the documentation website.
Support
Use the Discussion page if you have any questions or ideas you would like so see implemented. To alert an issue or a bug please post in the Issues page.
Roadmap
This are some functionalities that are being developed and will be released in a near future:
- Create a Docker for XMPP server and PEAK.
- Add dynamic speed option to PEAK's internal clock.
- Add multi-threading option to the execution configurations.
- Implement Yellow Page Service in DF agent.
- Implement Data Analysis section in the Dashboard.
Scientific Publications
- Ribeiro, B., Pereira, H., Gomes, L., Vale, Z. (2023). Python-Based Ecosystem for Agent Communities Simulation. In: , et al. 17th International Conference on Soft Computing Models in Industrial and Environmental Applications (SOCO 2022). SOCO 2022. Lecture Notes in Networks and Systems, vol 531. Springer, Cham. https://doi.org/10.1007/978-3-031-18050-7_7
Contributing to PEAK
Pull requests are welcome. For major changes, please open a discussion first to discuss what you would like to change.
The examples are used as a form of testing the framework. So please make sure to update the examples as appropriate or make new ones.
To format the code please use the black and isort packages.
For the commits please follow the Conventional Commits Guideline.
License
PEAK
is free and open-source software licensed under the GNU General Public License v3.0.
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
File details
Details for the file peak-mas-1.0.8.tar.gz
.
File metadata
- Download URL: peak-mas-1.0.8.tar.gz
- Upload date:
- Size: 28.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e49133a91dd30a09a0bc4e5861973965806a78d6e0ddd53426a5d6fa70801916 |
|
MD5 | c84affc3e1aab9db8b2edacccda1a672 |
|
BLAKE2b-256 | 70ab3a4e64e5f55f47b690b71dac36cdba9354e75e89d312ec9dc725f8e3a550 |
File details
Details for the file peak_mas-1.0.8-py3-none-any.whl
.
File metadata
- Download URL: peak_mas-1.0.8-py3-none-any.whl
- Upload date:
- Size: 28.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6551f05c09ce4532468a894b59ecb93a920541be8deb841352c5726a3d8b599 |
|
MD5 | 194f19c538a7394bf97c18884bebf42f |
|
BLAKE2b-256 | 1a00faae9fd7b7b48faf6e3e24cb8fcf8125a81bb9c4117ee1a0be9d8c0fea76 |