This guide will walk you through setting up a Python environment, installing dependencies, and launching an agent server in the TangramCollaborativeAI project.
To ensure a clean workspace, it’s best to create a Python virtual environment.
cd models/[agent_directory]
Replace [agent_directory]
with the actual agent’s folder name.
python -m venv venv
source venv/bin/activate
venv\Scripts\activate
venv\Scripts\Activate.ps1
Each agent has its own dependencies listed in a requirements.txt
file inside its directory. Once the virtual environment is activated, install them with:
pip install -r requirements.txt
To verify the installation, run:
pip list
To start the agent server, you must run the command from the TangramCollaborativeAI
directory (one level above models
).
cd ../../ # Go to TangramCollaborativeAI
python -m models.[agent_directory].[agent_main_file]
Replace:
[agent_directory]
with the agent’s folder name.[agent_main_file]
with the main script name (without .py
).There are currently 3 Agents available to use, our most complex agent that utilizes spacial descriptions relationalAgent, our self reflective agent simpleGPTAgent and a random playing agent corresponding to the default template behaviour
To launch the RelationalAgent, use:
python -m models.relationalAgent.relationalAgentGPT
To launch the SimpleGPTAgent, use:
python -m models.simpleAgent.simpleGPTAgent
To launch the class default random behaviour, use:
python -m models.templates.agentTemplate
Now your agent server should be up and running!