💬 Commit message: Update 2026-02-15 17:50:28, 6 files, 110 lines

📁 Files changed: 6
📝 Lines changed: 110

  • deploy.md
  • Dockerfile
  • Dockerfile.rocm
  • README.md
  • deploy.sh
  • cli.py
This commit is contained in:
Adam Ladachowski
2026-02-15 17:50:28 +01:00
parent 6fe4c11683
commit 0ce7744324
6 changed files with 89 additions and 35 deletions
+4 -4
View File
@@ -117,7 +117,7 @@ Manage sd-server process via a REST API. Requires `pip install tensors[server]`.
tsr serve --model /path/to/model.safetensors
# Custom host and port
tsr serve --model /path/to/model.safetensors --host 0.0.0.0 --port 8080
tsr serve --model /path/to/model.safetensors --host 0.0.0.0 --port 51200
# Check server status
tsr status
@@ -196,7 +196,7 @@ Control a remote tsr server instead of local operations.
```bash
# Configure a remote server
tsr remote add junkpile http://junkpile:8080
tsr remote add junkpile http://junkpile:51200
# Set default remote
tsr remote default junkpile
@@ -233,8 +233,8 @@ Config file: `~/.config/tensors/config.toml`
civitai_key = "your-api-key"
[remotes]
junkpile = "http://junkpile:8080"
local = "http://localhost:8080"
junkpile = "http://junkpile:51200"
local = "http://localhost:51200"
# Optional: set default remote for all commands
default_remote = "junkpile"