podstack 1.3.7__tar.gz → 1.3.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. {podstack-1.3.7 → podstack-1.3.9}/PKG-INFO +1 -1
  2. {podstack-1.3.7 → podstack-1.3.9}/podstack/registry/client.py +11 -5
  3. {podstack-1.3.7 → podstack-1.3.9}/podstack.egg-info/PKG-INFO +1 -1
  4. {podstack-1.3.7 → podstack-1.3.9}/pyproject.toml +1 -1
  5. {podstack-1.3.7 → podstack-1.3.9}/LICENSE +0 -0
  6. {podstack-1.3.7 → podstack-1.3.9}/README.md +0 -0
  7. {podstack-1.3.7 → podstack-1.3.9}/podstack/__init__.py +0 -0
  8. {podstack-1.3.7 → podstack-1.3.9}/podstack/annotations.py +0 -0
  9. {podstack-1.3.7 → podstack-1.3.9}/podstack/client.py +0 -0
  10. {podstack-1.3.7 → podstack-1.3.9}/podstack/exceptions.py +0 -0
  11. {podstack-1.3.7 → podstack-1.3.9}/podstack/execution.py +0 -0
  12. {podstack-1.3.7 → podstack-1.3.9}/podstack/gpu_runner.py +0 -0
  13. {podstack-1.3.7 → podstack-1.3.9}/podstack/models.py +0 -0
  14. {podstack-1.3.7 → podstack-1.3.9}/podstack/notebook.py +0 -0
  15. {podstack-1.3.7 → podstack-1.3.9}/podstack/registry/__init__.py +0 -0
  16. {podstack-1.3.7 → podstack-1.3.9}/podstack/registry/exceptions.py +0 -0
  17. {podstack-1.3.7 → podstack-1.3.9}/podstack/registry/experiment.py +0 -0
  18. {podstack-1.3.7 → podstack-1.3.9}/podstack/registry/model.py +0 -0
  19. {podstack-1.3.7 → podstack-1.3.9}/podstack/registry/model_utils.py +0 -0
  20. {podstack-1.3.7 → podstack-1.3.9}/podstack.egg-info/SOURCES.txt +0 -0
  21. {podstack-1.3.7 → podstack-1.3.9}/podstack.egg-info/dependency_links.txt +0 -0
  22. {podstack-1.3.7 → podstack-1.3.9}/podstack.egg-info/requires.txt +0 -0
  23. {podstack-1.3.7 → podstack-1.3.9}/podstack.egg-info/top_level.txt +0 -0
  24. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/__init__.py +0 -0
  25. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/app.py +0 -0
  26. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/exceptions.py +0 -0
  27. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/image.py +0 -0
  28. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/runner.py +0 -0
  29. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/secret.py +0 -0
  30. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/utils.py +0 -0
  31. {podstack-1.3.7 → podstack-1.3.9}/podstack_gpu/volume.py +0 -0
  32. {podstack-1.3.7 → podstack-1.3.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: podstack
3
- Version: 1.3.7
3
+ Version: 1.3.9
4
4
  Summary: Official Python SDK for Podstack GPU Notebook Platform
5
5
  Author-email: Podstack <support@podstack.ai>
6
6
  License-Expression: MIT
@@ -411,16 +411,22 @@ class RegistryClient:
411
411
  if tags:
412
412
  body["tags"] = tags
413
413
 
414
- data = self._request("POST", "/models", json=body)
414
+ try:
415
+ data = self._request("POST", "/models", json=body)
416
+ except RegistryError as e:
417
+ if "already exists" in str(e).lower():
418
+ data = self._request("GET", f"/models/{name}")
419
+ else:
420
+ raise
415
421
  model_data = data.get("model", data)
416
422
  model = RegisteredModel.from_dict(model_data, client=self)
417
423
 
418
- # Auto-create version 1 when run_id is provided
424
+ # Auto-create version 1 when run_id is provided.
425
+ # Only pass source when the artifact dir actually exists locally;
426
+ # otherwise let the backend derive it from the run's artifact URI.
419
427
  if run_id:
420
428
  artifact_dir = self._get_artifact_dir(run_id)
421
- source = f"runs/{run_id}/artifacts/model"
422
- if os.path.isdir(artifact_dir):
423
- source = artifact_dir
429
+ source = artifact_dir if os.path.isdir(artifact_dir) else None
424
430
  self.create_model_version(
425
431
  model.id, run_id=run_id, source=source
426
432
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: podstack
3
- Version: 1.3.7
3
+ Version: 1.3.9
4
4
  Summary: Official Python SDK for Podstack GPU Notebook Platform
5
5
  Author-email: Podstack <support@podstack.ai>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "podstack"
7
- version = "1.3.7"
7
+ version = "1.3.9"
8
8
  description = "Official Python SDK for Podstack GPU Notebook Platform"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes