Skip to content

Installation

Requirements

Install from PyPI

pip install deepagent-temporal

Or with uv:

uv add deepagent-temporal

This installs the core dependencies:

  • langgraph-temporal >= 0.1.0
  • langgraph >= 1.0.0
  • temporalio >= 1.7.0

Running a local Temporal server

For development, use Docker Compose. The repository includes a pre-configured setup:

git clone https://github.com/pradithya/deepagent-temporal.git
cd deepagent-temporal

cp .env.ci .env
make start_temporal

This starts:

  • Temporal Server on localhost:7233 (gRPC)
  • Temporal Web UI on http://localhost:8233
  • PostgreSQL as the persistence backend
  • Elasticsearch for workflow visibility

To stop:

make stop_temporal

Temporal CLI

For a lighter-weight setup, use the Temporal CLI:

temporal server start-dev