Skip to content

Commit d7a5484

Browse files
committed
fix: expand PVC to 5Gi for moondream model, fix torch_dtype deprecation
1 parent 4917cf4 commit d7a5484

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

backends/moondream/backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(
4444

4545
load_kwargs: Dict[str, Any] = {
4646
"trust_remote_code": True,
47-
"torch_dtype": dtype,
47+
"dtype": dtype,
4848
"device_map": device,
4949
}
5050
if revision:

k8s/pvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ spec:
1212
storageClassName: do-block-storage
1313
resources:
1414
requests:
15-
storage: 3Gi
15+
storage: 5Gi
1616

0 commit comments

Comments
 (0)