Python SDK for ROAM (Object Agent Mapper)
Project description
roam-sdk
Python SDK for the OAM (Object Agent Mapping) framework. Connects Python applications to the OAM runtime over gRPC with SQLAlchemy model registration and all three schema modes.
Installation
pip install roam-sdk
# or with uv
uv add roam-sdk
Quick Start
from roam_sdk import RoamClient
from roam_sdk.v1.agent import service_pb2
client = RoamClient(address="localhost:50051", api_key="your-api-key")
client.connect()
# Register as a DATA_FIRST agent (read-only, DB introspection)
client.register("my-agent", "1.0.0", service_pb2.SchemaMode.DATA_FIRST)
# Execute a query
response = client.execute_query("SELECT * FROM organizations LIMIT 10")
client.close()
Schema Modes
from roam_sdk.v1.agent import service_pb2
# DATA_FIRST — Discovery mode. Read-only. Backend introspects DB schema.
client.register("agent", "1.0", service_pb2.SchemaMode.DATA_FIRST)
# CODE_FIRST — App extension mode. Only registered models are queryable. Read-write.
client.register("agent", "1.0", service_pb2.SchemaMode.CODE_FIRST)
# HYBRID — Registered models first, introspection fallback. Read-only.
client.register("agent", "1.0", service_pb2.SchemaMode.HYBRID)
| Mode | Description | Access |
|---|---|---|
DATA_FIRST |
DB introspection — no model registration needed | Read-only |
CODE_FIRST |
Registered models only — code-defined validation | Read-write |
HYBRID |
Registered models + introspection fallback | Read-only |
SQLAlchemy Model Registration
Use RoamDeclarativeBase as the base for your SQLAlchemy models to enable CODE_FIRST or HYBRID registration:
from sqlalchemy.orm import DeclarativeBase
from roam_sdk import RoamClient, RoamDeclarativeBase
from roam_sdk.v1.agent import service_pb2
class Base(RoamDeclarativeBase, DeclarativeBase):
pass
class Organization(Base):
"""Tenant organization model."""
__tablename__ = "organizations"
id: int
name: str
slug: str
client = RoamClient(address="localhost:50051")
client.connect()
client.register("my-agent", "1.0.0", service_pb2.SchemaMode.CODE_FIRST)
client.register_model(Organization)
# Only registered tables are queryable in CODE_FIRST mode
response = client.execute_query("SELECT * FROM organizations")
Schema Constraint Mapping
RoamDeclarativeBase.to_roam_schema() translates SQLAlchemy column constraints into restrictive JSON Schema rules for LLM tool calls.
| SQLAlchemy constraint | JSON Schema effect |
|---|---|
primary_key=True |
Description annotated "Primary Key — auto-generated; omit on INSERT"; excluded from required |
ForeignKey("table.col") |
Description annotated "Foreign Key → table.col" |
unique=True |
Description annotated "UNIQUE — value must be unique across all rows" |
Enum("a", "b", ...) |
Property emits "enum": ["a", "b", ...] |
| — | "additionalProperties": False on every table schema |
from sqlalchemy import Enum, ForeignKey, String
from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column
from roam_sdk import RoamDeclarativeBase
class Base(DeclarativeBase, RoamDeclarativeBase):
pass
class Department(Base):
__tablename__ = "departments"
id: Mapped[int] = mapped_column(primary_key=True)
name: Mapped[str] = mapped_column(String, unique=True)
class Employee(Base):
__tablename__ = "employees"
id: Mapped[int] = mapped_column(primary_key=True)
department_id: Mapped[int] = mapped_column(ForeignKey("departments.id"))
role: Mapped[str] = mapped_column(Enum("engineer", "manager", name="role_enum"))
schema = Employee.to_roam_schema()
# schema["parameters"]["additionalProperties"] == False
# schema["parameters"]["properties"]["department_id"]["description"] contains "departments.id"
# schema["parameters"]["properties"]["role"]["enum"] == ["engineer", "manager"]
Runtime Context Headers
Attach request context before calling execute_query:
client.query_context = {
"organization_id": "org-123",
"user_id": "user-456",
"tool_name": "data-explorer",
"tool_intent": "read",
"domain_tags": ["identity"],
"table_names": ["organizations"],
}
These map to the standard ROAM runtime headers (x-roam-organization-id, x-roam-user-id, etc.) and are forwarded on every gRPC call.
Testing
# Unit tests (no backend required)
pytest tests/unit/
# Integration tests (requires running OAM backend)
make grpc-start # from repo root
pytest tests/integration/
Related Packages
| Package | Description |
|---|---|
roam-sdk |
This package |
oam |
Rust core runtime |
oam-proto |
Shared protobuf definitions |
License
Licensed under either of Apache License 2.0 or MIT License at your option.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file roam_sdk-0.1.0.tar.gz.
File metadata
- Download URL: roam_sdk-0.1.0.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
548690b631c144f2e823190a4cfafefa8bbf6c7c42ee5792c53d2757c079f19e
|
|
| MD5 |
866541beaabf97441f6b7cc0fdd3d714
|
|
| BLAKE2b-256 |
97ea01ee2a99518b59ffc3eaf4fe20b5b2429f5bb6dae0292d7fde3ebea5b39b
|
Provenance
The following attestation bundles were made for roam_sdk-0.1.0.tar.gz:
Publisher:
publish.yml on oamrs/roam-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roam_sdk-0.1.0.tar.gz -
Subject digest:
548690b631c144f2e823190a4cfafefa8bbf6c7c42ee5792c53d2757c079f19e - Sigstore transparency entry: 1359053475
- Sigstore integration time:
-
Permalink:
oamrs/roam-python@b19509561a1cd59121137ec1228c9a83050e689b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/oamrs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b19509561a1cd59121137ec1228c9a83050e689b -
Trigger Event:
push
-
Statement type:
File details
Details for the file roam_sdk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: roam_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
336978192f4c7dc3c538679f6741cc70ab9f59a540bc02eb54cdd63daaf7f764
|
|
| MD5 |
4361c05b497ef0a58fd855cc813b45fb
|
|
| BLAKE2b-256 |
d7c5db81bfbe9bf13135bb445f910c780f86f55d4a90034a2e69ed61ae66154e
|
Provenance
The following attestation bundles were made for roam_sdk-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on oamrs/roam-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
roam_sdk-0.1.0-py3-none-any.whl -
Subject digest:
336978192f4c7dc3c538679f6741cc70ab9f59a540bc02eb54cdd63daaf7f764 - Sigstore transparency entry: 1359053528
- Sigstore integration time:
-
Permalink:
oamrs/roam-python@b19509561a1cd59121137ec1228c9a83050e689b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/oamrs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b19509561a1cd59121137ec1228c9a83050e689b -
Trigger Event:
push
-
Statement type: