This is the official SDK for the PAP agentic AI.
Here is the high-level architecture of the system. Click the diagram to see the full-size version.
This project uses a Python virtual environment (venv) to manage its dependencies. This ensures that the project's packages are isolated from your global Python installation, preventing conflicts.
If you are cloning this project for the first time, you need to create the virtual environment.
- Navigate to the project's root directory in your terminal.
- Run the following command to create a virtual environment folder named
venv:
python -m venv venvBefore you run any scripts (main.py, server.py, etc.) or install packages, you must activate the virtual environment in your terminal.
(Use Command Prompt or PowerShell)
.\venv\Scripts\activatesource venv/bin/activate✅ You'll know the environment is active when you see (venv) at the beginning of your terminal prompt.
You can now proceed to run the application.
To create an identical environment, run the following command:
pip install -r requirements.txt