You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/cmd/model/upload.go
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,9 @@ identifier is printed and the model can be used with 'runware run'.
76
76
77
77
NOTE: "model upload" is only supported by the WebSocket (ws) transport. If you have your default transport configured as http you must set the --transport ws flag when calling "model upload"`,
78
78
Example: ` # Upload a FLUX checkpoint from a hosted safetensors file
79
-
runware model upload --air "myorg:42@1" \
79
+
# NOTE: --air must use your configured AIR source (see: runware account details)
80
+
runware model upload --air "<your-air-source>:42@1" \
81
+
--unique-identifier "my-custom-model-v1" \
80
82
--category checkpoint \
81
83
--architecture flux1d \
82
84
--name "My Custom Model"\
@@ -85,7 +87,8 @@ NOTE: "model upload" is only supported by the WebSocket (ws) transport. If you h
85
87
--private
86
88
87
89
# Upload a LoRA with metadata and defaults
88
-
runware model upload --air "myorg:42@1" \
90
+
runware model upload --air "<your-air-source>:42@1" \
91
+
--unique-identifier "style-lora-v1" \
89
92
--category lora \
90
93
--architecture sdxl \
91
94
--name "Style LoRA" \
@@ -166,8 +169,8 @@ NOTE: "model upload" is only supported by the WebSocket (ws) transport. If you h
0 commit comments