Scaleway Inference
@sntxrr/scaleway-inferencev2026.07.19.1
01README
Manage a Scaleway Managed Inference deployment — sync state, create, update, and delete dedicated model serving deployments, and discover deployments in a region, via the Managed Inference API with X-Auth-Token auth.
02Models
@sntxrr/scaleway-inferencev2026.07.19.1scaleway_inference.ts
Global Arguments
| Argument | Type | Description |
|---|---|---|
| secretKey | string | Scaleway API secret key. Wire with ${{ vault.get(scaleway, SCW_SECRET_KEY) }}. |
| projectId | string | Scaleway Project ID that owns the inference deployment. |
| region | string | Region, e.g. fr-par, nl-ams, pl-waw. |
| deploymentId? | string | ID of the Managed Inference deployment this model manages. Optional — |
| endpoint? | string | Override the API host. Defaults to https://api.scaleway.com. |
fn sync()
Fetch the deployment's current state (GetDeployment).
fn create(name: string, modelId: string, nodeType: string, acceptEula: boolean, minSize?: number, maxSize?: number, tags?: array, publicEndpoint: boolean, privateNetworkId?: string, disableAuth: boolean, quantizationBits?: number)
Provision a new inference deployment (CreateDeployment) and snapshot it.
| Argument | Type | Description |
|---|---|---|
| name | string | Name of the new inference deployment. |
| modelId | string | UUID of the model to deploy (see the Managed Inference model catalog). |
| nodeType | string | Name of the node type to use, e.g. L4, H100, H100-2 (sent as node_type_name). |
| acceptEula | boolean | Accept the model's End User License Agreement (EULA) if it requires one. |
| minSize? | number | Minimum size of the serving pool. Optional; API default applies. |
| maxSize? | number | Maximum size of the serving pool. Currently must equal minSize (no autoscaling). |
| tags? | array | Tags to attach to the new deployment. |
| publicEndpoint | boolean | Create a public endpoint for the deployment. |
| privateNetworkId? | string | If set, also create a private endpoint attached to this Private Network ID. |
| disableAuth | boolean | Disable IAM authentication on the created endpoint(s). Defaults to protected. |
| quantizationBits? | number | If set, quantize each model parameter to this many bits. |
fn update(name?: string, tags?: array, minSize?: number, maxSize?: number, modelId?: string, quantizationBits?: number)
Mutate an inference deployment's mutable fields (UpdateDeployment).
| Argument | Type | Description |
|---|---|---|
| name? | string | New name for the deployment. |
| tags? | array | Replacement set of tags for the deployment. |
| minSize? | number | New minimum size of the serving pool. |
| maxSize? | number | New maximum size of the serving pool. Currently must equal minSize. |
| modelId? | string | UUID of a new model to set on the deployment. |
| quantizationBits? | number | New quantization: number of bits per model parameter. |
fn delete()
Deprovision the inference deployment (DeleteDeployment).
fn list()
Discover all inference deployments in the region (factory).
Resources
deployment(infinite)— Snapshot of the Managed Inference deployment's state
03Previous Versions
2026.07.18.1
04Stats
A
100 / 100
Downloads
0
Archive size
12.4 KB
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive1/1earned
- Most symbols documented1/1earned
- No slow types (deprecated)1/1earned
- Dependencies pass trust audit2/2earned
- Has description1/1earned
- Platform support declared (or universal)2/2earned
- License declared1/1earned
- Verified public repository2/2earned
Repository
https://github.com/sntxrr/swamp-scaleway05Platforms
06Labels