AI Marketplace Python SDK
Project description
AIMP SDK (Python)
This package provides the class-based SDK used by model authors.
Install
python -m pip install ai-marketplace-sdk
Install (local source)
cd packages/python/sdk
uv pip install .
Development (editable)
cd packages/python/sdk
uv pip install -e .
Model Runtime Entrypoint
Model containers must use the canonical executable module:
python -m aimp_sdk.model_runner --module /app/main.py
aimp_sdk.model_runner is the only supported public model runtime entrypoint.
It starts the long-lived stdin/stdout runner that emits the initial {"type":"ready"}
protocol message and serves mode requests.
Streaming and Playground (authoring)
- Streaming — use
Stream.text(text=Schema.Outputs.<field>, status=Schema.Outputs.<json>)withStreamStateforstatus(...)updates;done()returns validated outputs. The execution sink remains internal. - Playground — declare
PlaygroundSpecinplayground.pyonly:When,SectionRole,Markdown(..., stream=True),sources=PlaygroundSources(history=source.chat_history()),computed=PlaygroundComputed(...)withcomputed.asset_ref/computed.asset_refs, and typed item fields viaJsonField(schema=..., multiple=True)plusImage.asset_ref(...). Only outputs referenced by views are UI-rendered; other outputs stay contract-only.
Fine-Tune From Scratch
The fine-tune flow has two sides:
- model authoring: define the schema and training runtime inside the model project
- consumer dataset creation: build one local bundle that matches the published schema
1. Define the model-scoped tuning contract
Model authors declare fine-tune inputs by subclassing FineTuneSchema in
tuning/dataset.py.
Available field types:
ImageFieldAudioFieldVideoFieldFileFieldTextFieldJsonField
Example:
from aimp_sdk import FineTuneSchema, ImageField
def validate_png(value: object) -> None:
if not str(value).lower().endswith(".png"):
raise ValueError("Only PNG files are allowed")
class ModelFineTuneSchema(FineTuneSchema):
query_image = ImageField(required=True, validators=[validate_png])
candidate_image = ImageField(required=True, validators=[validate_png])
Use field-level validators=[...] and preprocessors=[...] when one field needs custom cleanup or
validation. These hooks run during local bundle build, before upload.
2. Implement the tuning runner
Model authors implement tuning behavior in tuning/runner.py and bind it from
main.py using tuning = ....
The runner declares strategy plus tuning contracts and implements run(session) -> TuneResult.
from aimp_sdk import Model, TuneResult
class CoreTuning:
strategy = "lora"
dataset_schema = CoreDataset
hyperparams_schema = CoreHyperparams
async def run(self, session) -> TuneResult:
learning_rate = session.suggest_float("learning_rate", 1e-5, 1e-3, default=5e-4)
epochs = session.suggest_int("epochs", 1, 5, default=3)
for record in session.train_dataset:
train_step(
query_image=session.resolve_path(record.query_image),
candidate_image=session.resolve_path(record.candidate_image),
learning_rate=learning_rate,
)
_ = epochs
validation_recall_at_10 = evaluate(session.validation_dataset)
return TuneResult(metrics={"validation_recall_at_10": validation_recall_at_10})
class CoreModel(Model):
engine = CoreEngine
tuning = CoreTuning
The runner owns only model-authored training logic and typed schemas. Dataset bundle format, validation split policy, optimization targets, and hardware selection belong to job/platform inputs, not runner class attributes.
session exposes only training concerns:
session.train_datasetsession.validation_datasetsession.paramssession.resolve_path(...)session.suggest_float(...)session.suggest_int(...)session.suggest_categorical(...)
In the current SDK, authors implement build(self, ctx) to load runtime state once. The separate
load(...) method is framework-internal cache/lifecycle plumbing and is not the author-facing hook.
session.params comes from the model's published tuning.parameters contract. Defaults and search
space metadata are contract-owned by the platform. Use session.suggest_* helpers for explicit
default handling; the SDK does not add random or hidden fallbacks.
Model code does not handle dataset files, S3 uploads, adapter URIs, or trial orchestration.
3. Build the consumer dataset bundle
Consumers do not write model-side tuning code. They use the published schema through the CLI:
ai fine-tune schema --model <model-slug>ai fine-tune scaffold --model <model-slug>- edit
prepare_bundle.pyand add any localassets/ python prepare_bundle.pyai fine-tune create --model <model-slug> --output-dir .
During bundle build the SDK:
- validates required fields and field types
- runs field preprocessors
- validates the processed values
- copies binary assets into the bundle
- writes
data.parquetandmanifest.json
That means field preprocessors and validators run before upload, not during remote execution.
4. Use the derived model directly
Successful LoRA fine-tunes produce a derived executable model with its own asset ID and slug. Clients should execute that derived model directly, as if it were a new model:
job = client.fine_tune_job(job_id="ft-123").wait_for_completion()
result = client.models.execute(
model=job.tuned_model_slug,
mode="generate",
input={"prompt": "hello"},
)
Client code should not pass adapter_id to executions. Adapter resolution is platform-internal.
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 ai_marketplace_sdk-0.6.7.tar.gz.
File metadata
- Download URL: ai_marketplace_sdk-0.6.7.tar.gz
- Upload date:
- Size: 211.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49bfc2223a1310ad7ee431cfcadac42d735825090ea7e65e7edeefbc3cf14c61
|
|
| MD5 |
bae58a84fd6dea2db3843f7a27aaec39
|
|
| BLAKE2b-256 |
c7d5024e868eab38a1accbc52a86b23dc2fc7720ba4c373ee402f9d333b3f8ba
|
Provenance
The following attestation bundles were made for ai_marketplace_sdk-0.6.7.tar.gz:
Publisher:
publish-python-packages.yml on zakariaalmoktar/AI-Marketplace-Platform
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ai_marketplace_sdk-0.6.7.tar.gz -
Subject digest:
49bfc2223a1310ad7ee431cfcadac42d735825090ea7e65e7edeefbc3cf14c61 - Sigstore transparency entry: 1397764231
- Sigstore integration time:
-
Permalink:
zakariaalmoktar/AI-Marketplace-Platform@6da9aca6df11d67ba3bbe8e33d5c7b806e7bd644 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/zakariaalmoktar
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python-packages.yml@6da9aca6df11d67ba3bbe8e33d5c7b806e7bd644 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ai_marketplace_sdk-0.6.7-py3-none-any.whl.
File metadata
- Download URL: ai_marketplace_sdk-0.6.7-py3-none-any.whl
- Upload date:
- Size: 81.7 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 |
ac4b3ee5815568fa15c654330339f409759030b8229a3b23cba262d081a87ce0
|
|
| MD5 |
a54c3556192785162679ce28492e652b
|
|
| BLAKE2b-256 |
2fcc4ed8a3c5d716a433ad1856495be85f07f780f563836607d3e334576d17b3
|
Provenance
The following attestation bundles were made for ai_marketplace_sdk-0.6.7-py3-none-any.whl:
Publisher:
publish-python-packages.yml on zakariaalmoktar/AI-Marketplace-Platform
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ai_marketplace_sdk-0.6.7-py3-none-any.whl -
Subject digest:
ac4b3ee5815568fa15c654330339f409759030b8229a3b23cba262d081a87ce0 - Sigstore transparency entry: 1397764276
- Sigstore integration time:
-
Permalink:
zakariaalmoktar/AI-Marketplace-Platform@6da9aca6df11d67ba3bbe8e33d5c7b806e7bd644 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/zakariaalmoktar
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python-packages.yml@6da9aca6df11d67ba3bbe8e33d5c7b806e7bd644 -
Trigger Event:
push
-
Statement type: