river-client
Python client for the River ML training API — sampling, LoRA fine-tuning, and reinforcement learning against River-hosted models.
Installation
pip install river-client
Requires Python 3.12+.
Quick start
import river_client as river
client = river.Client(api_key="your-key", endpoint="api.river.ai")
# Stateless sampling from a base model
samples = client.sample(
"What is 2+2?",
base_model="Qwen/Qwen3.6-35B-A3B-FP8",
max_tokens=50,
)
print(samples[0].text)
# Training with a session
with client.session() as session:
model = session.create_model(
base_model="Qwen/Qwen3.6-35B-A3B-FP8",
lora=river.LoraConfig(rank=16),
)
# Forward + backward, then an optimizer step
result = model.forward_backward(data, loss_fn="cross_entropy")
model.optim_step(lr=1e-4)
# Sample from the current weights
sample_groups = model.sample("Continue:", max_tokens=100)
Dedicated streaming inference
Gated feature — disabled by default. Contact River to enable dedicated deployments for your team and the checkpoint's base model before using these APIs. Use a team API key with that access; personal API keys cannot create deployments.
client.create_deployment(checkpoint, ...) provisions capacity for a
checkpoint and returns a base URL that the standard OpenAI client streams
from unchanged; list_deployments, get_deployment_usage, scale_on_target
and delete_deployment manage it from there. The bundled agent skill below
carries the full workflow: replica roles, scale-to-zero and resume, streaming
error handling, and usage accounting.
AI agent skill
The package bundles an agent skill — a SKILL.md that teaches AI coding
agents (Claude Code and compatible tools) the current training API:
train_step semantics, data formats, RL/SFT/distillation loop patterns,
image uploads and handles, fault-tolerant auto-recovery, and the dedicated
deployment workflow above. Because it ships inside the wheel, the skill always
matches the installed client version.
Install it into your agent's skills directory:
python -m river_client.skill --install
This copies the skill into ~/.claude/skills/; pass --dest for a
different location (e.g. a project's .claude/skills/). Run without
--install to print the bundled skill's path instead.
License
Apache-2.0. See LICENSE.
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 river_client-0.10.0.tar.gz.
File metadata
- Download URL: river_client-0.10.0.tar.gz
- Upload date:
- Size: 146.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2f69437b568ff8014f31ee7d38ca842b71aee22745b96ad630dfcd5df1a9ab7
|
|
| MD5 |
f0ad1a3701208da90c54db93febb9e80
|
|
| BLAKE2b-256 |
6c772c28310a7bd6b32159fa9eab7343ae4093ab30d9ce2c23764e2a38ceb14d
|
File details
Details for the file river_client-0.10.0-py3-none-any.whl.
File metadata
- Download URL: river_client-0.10.0-py3-none-any.whl
- Upload date:
- Size: 161.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb8f14bb5e9b76661e306baf6f6dc9b837fd28e2ab415cc3f8af5076027acfe5
|
|
| MD5 |
0f37638ab3e823bb22253f5cfffe27ff
|
|
| BLAKE2b-256 |
c8d85e116fe65946793a9d727b495fc0c8e59310b02aa6d6f9de715825891cd4
|