Developer Center

Everything developers need to integrate Kyros, deploy SDKs, and configure bitemporal proxy routing.

Local Editable Installation (Pre-Publication)

If you want to install and develop the SDK packages locally without downloading from package repositories, reference the local directories directly:

Python SDK Local Mode

# From the project root folder
pip install -e sdks/python

# With optional framework dependencies (CrewAI, LangChain, etc.)
pip install -e sdks/python[all]

TypeScript SDK Reference

Add this path dependency inside your project package.json:

"dependencies": {
  "@kyros/sdk": "file:../kyros-ai/sdks/typescript"
}

Packaging & Publication

PyPI Release (Python SDK)

cd sdks/python
python -m build
python -m twine upload dist/*