Installation

Set up jazzmine in a Python environment and validate runtime dependencies.

Requirements

Supported runtime

jazzmine targets Python 3.10 and newer. Use a dedicated virtual environment per service to avoid cross-project dependency drift.

Install package

pip install jazzmine

Verify setup

Run this check to confirm the version and resilient imports before wiring runtime code.

check.py
from importlib.metadata import version

try:
    from jazzmine.core import AgentBuilder, OpenAILLMConfig, ServerConfig
except ImportError:
    from jazzmine.core.builder import AgentBuilder, OpenAILLMConfig, ServerConfig

print("jazzmine", version("jazzmine"))
print("Imports OK:", AgentBuilder.__name__, OpenAILLMConfig.__name__, ServerConfig.__name__)

On this page