Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/docs/reference/cli/dstack/offer.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Displays available offers (hardware configurations) from configured backends or

The output shows backend, region, instance type, resources, spot availability, and pricing.

!!! info "Experimental"
`dstack offer` command is currently an experimental feature. Backward compatibility is not guaranteed across releases.

## Usage

This command accepts most of the same arguments as [`dstack apply`](apply.md).
Expand Down
6 changes: 4 additions & 2 deletions src/dstack/_internal/server/background/tasks/process_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@
from dstack._internal.server.services.prometheus.client_metrics import run_metrics
from dstack._internal.server.services.runs import (
fmt,
is_replica_registered,
process_terminating_run,
retry_run_replica_jobs,
run_model_to_run,
)
from dstack._internal.server.services.runs.replicas import (
is_replica_registered,
retry_run_replica_jobs,
scale_run_replicas,
)
from dstack._internal.server.services.secrets import get_project_secrets_mapping
Expand Down
Loading