Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Environment Interface Standard (EIS) provides a glue code framework that facilitates connecting agents to another system, i.e., the environment. EIS has been created in Java and solves a number of problems that you face when connecting agents to any other system, including most importantly:

  • connecting agents to entities that are made available by the environment
  • the exchange of actions that are performed by an agent with the environment
  • the exchange of perceptual information from the environment to an agent
  • tracking the state of the environment that agents are connected to (e.g., paused, running)
  • changing and managing the state of the environment that agents are connected to.

EIS also provides tools for handling technical issues such as exceptions.

Step-by-Step Guide

Here we provide a step-by-step guide on how to create your own EIS-enabled environment to which agents can be connected.

Note: Throughout this guide we will assume that you use maven and git, although it is not necessary to use these tools and you can choose to use your own preferred tools. In that case, references in the guide to either maven or git need to be substituted with the ones you use. The main effort needed to implement EIS for your environment is writing Java code, which does not rely on these choices.

Implementing an EIS environment consists of the following main steps: