Skip to main content

Weaver Python SDK

PyPI version Python CI

English | 中文

Python client for the NexWeave Weaver server. The SDK mirrors the REST API exposed by weaver-server and provides ergonomic helpers for training, sampling, telemetry, and operations management.

Installing locally

pip install nex-weaver

Configuration

Configuration can be provided via keyword arguments or environment variables:

  • WEAVER_API_KEY
  • WEAVER_ORGANIZATION_ID / WEAVER_PROJECT_ID for canonical IDs
  • WEAVER_ORGANIZATION / WEAVER_PROJECT for UUIDs, slugs, or display names

Canonical IDs take precedence. When no organization or project is configured, the server keeps its stable personal-organization/default-project fallback.

Quickstart

from weaver import ServiceClient

def main():
    with ServiceClient() as client:
        session = client.ensure_session()
        print(session)

if __name__ == "__main__":
    main()

Give a new Session an optional experiment name and searchable string labels while selecting its scope by human-readable references:

with ServiceClient(
    organization="research",
    project="alignment",
    name="PPO baseline",
    labels={"dataset": "math", "environment": "staging"},
) as client:
    client.ensure_session()

Empty name/labels are omitted from the create request, preserving compatibility with legacy servers and existing call sites.

weaver organizations list
weaver projects list --organization research
weaver scope resolve --organization research --project alignment

Organization slugs are globally unique. Project slugs and names are unique inside their organization; an ambiguous display name is rejected instead of guessed.

Usage

See examples/weaver_walkthrough.ipynb for an interactive walkthrough of the full SDK workflow using a Pig Latin translation task — covering data preparation, LoRA / full fine-tuning, sampling, and checkpoint management.

For a complete runnable script, see examples/pig_latin.py. For large packed datasets, examples/streaming_sft.py shows bounded token-budget batching and submit-ahead.

Generation control (full fine-tuning only)

RL weight swaps need in-flight generation to stop before new weights land. A sampling client can freeze its inference engine and resume it afterwards:

with sampling_client.paused(mode=PauseMode.ABORT):
    path = training_client.save_weights_for_sampler(name="step-42")
    new_client = service.create_sampling_client(
        model_path=path, model_id=model_id, base_model=base_model
    )

Two things to know before using it:

  • The pause is engine-wide, not per sampling session. It freezes every in-flight request on the engine serving that model, including ones issued through an earlier sampling session. That is what makes it usable for weight swaps — the requests you want to abort belong to the previous weight epoch — but it also means a pause is never scoped to "just my requests".
  • Full fine-tuning only. Those models get a dedicated engine. LoRA adapters are served from one shared engine per base model, where a pause would abort generation for unrelated tenants, so the call is rejected before any request is sent.

Prefer paused() over calling pause_generation() / continue_generation() directly: a pause that never reaches its resume leaves the engine frozen indefinitely, and there is no server-side auto-resume. The async client mirrors this as async with.

HuggingFace weights export

Checkpoints are stored in the trainer's native distributed format. export_weights() converts one into a HuggingFace directory — a full model for full fine-tuning, a PEFT adapter for LoRA — and download_weights() fetches it to disk:

artifact = training_client.export_weights()          # save current weights + export
artifact = training_client.export_weights(checkpoint=ckpt)  # export an existing checkpoint

service.download_weights(artifact, "./hf-weights")
weaver checkpoint export weaver://<model>/checkpoints/step-42
weaver checkpoint download weaver://<model>/checkpoints/step-42 -o ./hf-weights

Three things to know:

  • Export is explicit, download never triggers one. Converting a full model is minutes of compute and tens of GB of storage, so download_weights() fails with a "run export_weights first" error rather than silently starting a conversion.
  • Artifacts expire independently of their checkpoint (7 days by default, ttl_seconds to change). Deleting the source checkpoint does not delete the artifact, and vice versa.
  • LoRA exports an adapter by default. Pass merge_adapter=True to fold it into the base model and get a full HF model instead; it is rejected for full fine-tuning models.

Downloads run in parallel, resume interrupted files, refresh expired URLs, and verify each file's sha256 before publishing it. Both methods have Async* twins.

Deploying a checkpoint

deploy_checkpoint() publishes a checkpoint as a public, OpenAI-compatible endpoint: the server converts it to HuggingFace format, launches a dedicated inference workload, and registers that workload on the NorthGate gateway under the name you choose.

deployment = training_client.deploy_checkpoint(ckpt, name="my-chat-model")
print(deployment.endpoint)          # OpenAI-compatible URL

service.list_deployments()
service.get_deployment(deployment.id)
service.delete_deployment(deployment.id)
weaver deployment create weaver://<model>/checkpoints/step-42 --name my-chat-model
weaver deployment list
weaver deployment get <deployment-id>
weaver deployment delete <deployment-id>

Four things to know:

  • Publishing is permission-gated and off by default. The deployment.publish capability is granted by principal origin, not by Weaver role: an SSO session always qualifies, an API key only when it was minted under an IAM biz_code on the server's allowlist, and a service credential never. A server with the feature switched off answers 503. Both cases raise a WeaverAPIError that names what has to change. Listing, reading and deleting your own deployments need no capability — whoever published an endpoint can always take it down.
  • A deployment is independent and long-lived. It does not share the training inference instance, it outlives the training session, and it holds its GPUs until you delete it. It also pins the source checkpoint and the exported artifact against garbage collection.
  • The name is global and must be valid everywhere it lands. It is the served model name, the gateway's model_name, and a Kubernetes label at once: at most 63 characters of letters, digits, ., - and _, starting and ending alphanumerically. overwrite=True replaces an existing gateway registration; it does not free a name Weaver already uses.
  • It takes tens of minutes, dominated by the conversion. Pass wait=False to get an OperationHandle instead of blocking. Every method has an Async* twin.

Ecosystem

NexRL is the companion RL training framework. In its training-service mode, NexRL orchestrates the full RL loop (rollouts, trajectory collection, policy updates) while Weaver handles the underlying training and inference services.

Use Cases

OpenClaw Autonomous LearningMetaClaw has integrated Weaver as an RL backend. By setting rl.backend=weaver, MetaClaw turns every live conversation into a learning signal and uses Weaver for cloud-based LoRA training, enabling personal agents to continuously evolve without a local GPU.

Deep Dive

For more technical details, see Deep Dive into Weaver.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nex_weaver-1.14.0.tar.gz (158.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nex_weaver-1.14.0-py3-none-any.whl (130.8 kB view details)

Uploaded Python 3

File details

Details for the file nex_weaver-1.14.0.tar.gz.

File metadata

  • Download URL: nex_weaver-1.14.0.tar.gz
  • Upload date:
  • Size: 158.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nex_weaver-1.14.0.tar.gz
Algorithm Hash digest
SHA256 950cf7ca8e4b884cdd0f77ea295731dad048a8d618fb0505149ef48ceb2900cc
MD5 6013b44333da3540a9808d1dc201c405
BLAKE2b-256 f01876f8a2005661f3d92f8667ab5ee512be53e04883ce6918d3f240579041c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nex_weaver-1.14.0.tar.gz:

Publisher: publish.yml on nex-agi/weaver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nex_weaver-1.14.0-py3-none-any.whl.

File metadata

  • Download URL: nex_weaver-1.14.0-py3-none-any.whl
  • Upload date:
  • Size: 130.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nex_weaver-1.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c715b01e226198b6d53eca8eba49ee34dd006b8c129447f4d8e50493b979a540
MD5 57888b41c421c35a3a1d4c2941c8b8d1
BLAKE2b-256 d0c831ca918d4c71093956bc57aab03c218194e302d2309a5d3026f411027a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for nex_weaver-1.14.0-py3-none-any.whl:

Publisher: publish.yml on nex-agi/weaver

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.14.0 This release

2 files

1.13.0

2 files

1.12.0

2 files

1.10.0

2 files

1.9.0

2 files

1.7.0.4

2 files

1.7.0.3

2 files

1.7.0.2

2 files

1.7.0.1

2 files

1.7.0

2 files

1.6.3

2 files

1.6.2

2 files

1.6.1

2 files

1.6.0

2 files

1.5.0

2 files

1.4.2

2 files

1.4.1

2 files

1.4.0

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.7

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page