Python SDK for the Fabric AI workflow platform
Project description
fabric-platform
Python SDK for the Fabric AI workflow platform.
Installation
pip install fabric-platform
Quick Start
from fabric_platform import FabricClient
# API key auth
fabric = FabricClient(api_key="fab_your_key")
# Or: native email/password auth
fabric = FabricClient(base_url="https://fabric.example.com")
auth = fabric.login("alice@example.com", "SecurePass1!")
# Or: consumer-driven social login (your app handles OAuth)
auth = fabric.social_login(
provider="google",
provider_user_id=google_user["sub"],
email=google_user["email"],
display_name=google_user["name"],
)
# Use the authenticated client
me = fabric.get_me()
orgs = fabric.get_my_organizations()
Features
- Auth: signup, login, social login, change password, logout-all
- Organizations & Teams: CRUD, memberships, invitations
- Workflows: submit, monitor, stream events
- Assets: upload, download, galleries
- Webhooks & Schedules: create, manage, delivery history
- Admin: user management (list, unlock, verify, delete)
Typed workflows
Fabric derives JSON Schemas from each workflow's Pydantic task types at server boot and stores them in the registry. Discover a workflow's contract without reading the source:
schemas = fabric.get_workflow_schemas("research/trends")
print(schemas["input_schema"]) # JSON Schema for workflow input
print(schemas["output_schema"]) # JSON Schema for workflow output
print(schemas["task_schemas"]) # Per-task breakdown
Opt in to server-side validation on submission:
from fabric_platform.errors import FabricValidationError
try:
run = fabric.submit_run(
"research/trends",
input={"topic": 42}, # wrong type
validate=True,
)
except FabricValidationError as e:
print(e.response.json()["error"]["details"])
See the Typed Workflows guide for the full pattern, CI integration, and migration tips.
Documentation
See the Fabric documentation for the full API reference.
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 fabric_platform-0.7.1.tar.gz.
File metadata
- Download URL: fabric_platform-0.7.1.tar.gz
- Upload date:
- Size: 31.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a7b6057a01895a27f06b71e57fb132299c13fe85654a929c06d7e4c06c818fe
|
|
| MD5 |
dd3bc994a058cc92b8da94c7a8571861
|
|
| BLAKE2b-256 |
7886cfa3d7c56d7a8a4a2ed92585ad5a06959bbd2da2c5727531116d961678a1
|
File details
Details for the file fabric_platform-0.7.1-py3-none-any.whl.
File metadata
- Download URL: fabric_platform-0.7.1-py3-none-any.whl
- Upload date:
- Size: 25.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c86a72cf0edd98ac198a7591eecc67752e2660bd0a732c65875865c28566972
|
|
| MD5 |
ab66979749bd9c78e9c434e8c3fc4e3b
|
|
| BLAKE2b-256 |
b241beda500e6f8c31d5adda06b689b6ff4332d3316cc09257fe4519a1286571
|