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, OneShotBehaviour

class agent(Agent):
    class HelloWorld(OneShotBehaviour):
        async def run(self):
            print("Hello World")
            await self.agent.stop()

    async def setup(self):
        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:

  • Integrate FIPA ACL messages in PEAK.
  • Add dynamic speed option to PEAK's internal clock.
  • Add multi-threading option to the Command Line Interface.
  • Implement Yellow Page Service in the Directory Facilitator agent.
  • Implement physical mobility in the agents.

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

peak_mas-1.0.13-py3-none-any.whl (29.6 kB view hashes)

Uploaded Python 3

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