Skip to main content

Python-based framework for heterogeneous agent communities

Project description

PEAK: Python-based framework for heterogenous agent communities

DOI PyPI - Python Version PyPI GitHub powered by code style imports isort

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

peak-mas-1.0.4.tar.gz (32.1 kB view details)

Uploaded Source

Built Distribution

peak_mas-1.0.4-py3-none-any.whl (32.8 kB view details)

Uploaded Python 3

File details

Details for the file peak-mas-1.0.4.tar.gz.

File metadata

  • Download URL: peak-mas-1.0.4.tar.gz
  • Upload date:
  • Size: 32.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.6

File hashes

Hashes for peak-mas-1.0.4.tar.gz
Algorithm Hash digest
SHA256 a47f6838e4610616e535c3da25c075bfd3ff0f5c78dcaf9100fe5d050e6740f4
MD5 a4e7d77f67a0b9815ce026faee6ee2c9
BLAKE2b-256 fde05f5273049e9fbb4dbc55b9a69770e89375b139590e0beca2e0fc18c533df

See more details on using hashes here.

File details

Details for the file peak_mas-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: peak_mas-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.6

File hashes

Hashes for peak_mas-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9f5c9b6cb5e43b1bdfc6b76f3d8162621959c2fc1670e39325502e0dd8ef2c96
MD5 52d6b1dff049f8c2d6d51eedf8fc3b1b
BLAKE2b-256 9b4a0ba43d2e71dded3f0f4f057a07699508240a9fa465ca4d51a5216d00aea2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page