This guide explains how to install the OpenServ SDK locally for development and testing.
You can install the package directly from your local directory:
pip install -e .This creates an "editable" installation, where changes to the source code will be immediately reflected in your environment.
Alternatively, you can build and install the wheel file:
# Build the wheel
python -m build
# Install the wheel
pip install dist/openserv_sdk-0.1.0-py3-none-any.whlAfter installing, you can import and use the package:
import openserv
# Create agent instance
agent = openserv.Agent(...)