lyceum-cli 1.0.32__tar.gz → 1.0.33__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 (40) hide show
  1. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/PKG-INFO +1 -1
  2. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/gpu_selection.py +1 -17
  3. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/python.py +9 -2
  4. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cli.egg-info/PKG-INFO +1 -1
  5. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/setup.py +1 -1
  6. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/__init__.py +0 -0
  7. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/__init__.py +0 -0
  8. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/auth/__init__.py +0 -0
  9. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/auth/login.py +0 -0
  10. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/__init__.py +0 -0
  11. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/__init__.py +0 -0
  12. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/config.py +0 -0
  13. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/docker.py +0 -0
  14. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/docker_compose.py +0 -0
  15. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/notebook.py +0 -0
  16. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/execution/workloads.py +0 -0
  17. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/inference/__init__.py +0 -0
  18. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/inference/batch.py +0 -0
  19. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/inference/chat.py +0 -0
  20. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/inference/infer.py +0 -0
  21. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/compute/inference/models.py +0 -0
  22. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/general/__init__.py +0 -0
  23. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/vms/__init__.py +0 -0
  24. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/vms/instances.py +0 -0
  25. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/external/vms/management.py +0 -0
  26. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/main.py +0 -0
  27. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/shared/__init__.py +0 -0
  28. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/shared/config.py +0 -0
  29. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/shared/display.py +0 -0
  30. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/shared/imports.py +0 -0
  31. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum/shared/streaming.py +0 -0
  32. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cli.egg-info/SOURCES.txt +0 -0
  33. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cli.egg-info/dependency_links.txt +0 -0
  34. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cli.egg-info/entry_points.txt +0 -0
  35. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cli.egg-info/requires.txt +0 -0
  36. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cli.egg-info/top_level.txt +0 -0
  37. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cloud_execution_api_client/__init__.py +0 -0
  38. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cloud_execution_api_client/api/__init__.py +0 -0
  39. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/lyceum_cloud_execution_api_client/models/__init__.py +0 -0
  40. {lyceum_cli-1.0.32 → lyceum_cli-1.0.33}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lyceum-cli
3
- Version: 1.0.32
3
+ Version: 1.0.33
4
4
  Summary: Command-line interface for Lyceum Cloud Execution API
5
5
  Home-page: https://lyceum.technology
6
6
  Author: Lyceum Team
@@ -689,14 +689,6 @@ def predict_memory(
689
689
  imports: list[str] | None = typer.Option(
690
690
  None, "--import", help="Pre-import modules (can be used multiple times)"
691
691
  ),
692
- mixed_precision: str | None = typer.Option(
693
- None, "--mixed-precision", "-mp",
694
- help="Mixed precision dtype (fp16, bf16)"
695
- ),
696
- strategy: str | None = typer.Option(
697
- None, "--strategy", "-s",
698
- help="Parallelization strategy (ddp, fsdp, zero1, zero2, zero3)"
699
- ),
700
692
  use_config: bool = typer.Option(
701
693
  True, "--use-config/--no-config",
702
694
  help="Use workspace config from .lyceum/config.json if available"
@@ -708,9 +700,7 @@ def predict_memory(
708
700
  full GPU profiling. Faster than 'predict run'.
709
701
 
710
702
  Examples:
711
- lyceum predict memory train.py
712
- lyceum predict memory train.py --mixed-precision fp16
713
- lyceum predict memory train.py --strategy fsdp
703
+ lyceum gpu-selection memory train.py
714
704
  """
715
705
  status = StatusLine()
716
706
 
@@ -749,12 +739,6 @@ def predict_memory(
749
739
  if import_files:
750
740
  payload["import_files"] = import_files
751
741
 
752
- # TODO: When backend supports it, add mixed_precision and strategy to payload
753
- if mixed_precision:
754
- console.print(f"[dim]Note: --mixed-precision {mixed_precision} (backend support coming soon)[/dim]")
755
- if strategy:
756
- console.print(f"[dim]Note: --strategy {strategy} (backend support coming soon)[/dim]")
757
-
758
742
  execution_id = submit_gpu_selection(payload, status)
759
743
  console.print(f"[dim]Execution ID: {execution_id}[/dim]")
760
744
 
@@ -73,15 +73,22 @@ def load_workspace_config(file_path: Path | None = None) -> dict | None:
73
73
 
74
74
  def read_code_from_source(code_or_file: str, status: StatusLine = None) -> tuple[str, Path | None, str | None]:
75
75
  """Read code from file or return as-is if it's inline code."""
76
- file_path = Path(code_or_file) if Path(code_or_file).exists() else None
76
+ # Check if input looks like a file path
77
+ looks_like_file = code_or_file.endswith((".py", ".ipynb")) or "/" in code_or_file or "\\" in code_or_file
77
78
 
78
- if file_path:
79
+ file_path = Path(code_or_file)
80
+ if file_path.exists():
79
81
  if status:
80
82
  status.update(f"Reading {file_path.name}...")
81
83
  with open(file_path) as f:
82
84
  code_content = f.read()
83
85
  return code_content, file_path, file_path.name
84
86
 
87
+ # If it looks like a file but doesn't exist, raise an error
88
+ if looks_like_file:
89
+ raise FileNotFoundError(f"File not found: {code_or_file}")
90
+
91
+ # Otherwise treat as inline code
85
92
  return code_or_file, None, None
86
93
 
87
94
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lyceum-cli
3
- Version: 1.0.32
3
+ Version: 1.0.33
4
4
  Summary: Command-line interface for Lyceum Cloud Execution API
5
5
  Home-page: https://lyceum.technology
6
6
  Author: Lyceum Team
@@ -13,7 +13,7 @@ if readme_file.exists():
13
13
 
14
14
  setup(
15
15
  name="lyceum-cli",
16
- version="1.0.32",
16
+ version="1.0.33",
17
17
  description="Command-line interface for Lyceum Cloud Execution API",
18
18
  long_description=long_description,
19
19
  long_description_content_type="text/markdown",
File without changes
File without changes