Prime Intellect CLI + SDK

raw JSON →
0.6.3 verified Sat May 09 auth: no python

Prime Intellect CLI + SDK for interacting with Prime Intellect platform. Currently at version 0.6.3, actively maintained with frequent releases. Requires Python 3.10 to 3.13.

pip install prime
error ModuleNotFoundError: No module named 'prime'
cause Library not installed or installed in wrong environment.
fix
Run 'pip install prime' in your active virtual environment.
error AttributeError: module 'prime' has no attribute 'Prime'
cause Using wrong import style ('import prime' instead of 'from prime import Prime').
fix
Use 'from prime import Prime' to import the main class.
gotcha The library name 'prime' might conflict with other Python packages. Use a virtual environment to avoid clashes.
fix Create and activate a virtual environment before installing.
deprecated Some endpoints or methods may be deprecated as the SDK evolves. Check changelog on GitHub.
fix Update to latest version and review breaking changes.
pip install prime==0.6.3

Instantiate the Prime client and list available models.

from prime import Prime

client = Prime()
# Use client for platform interactions
print(client.models.list())