rename
This commit is contained in:
@@ -14,7 +14,7 @@ def load_config(path: str = "config.yaml") -> Config:
|
||||
config_path = Path(path)
|
||||
if not config_path.exists():
|
||||
raise FileNotFoundError(
|
||||
f"Config file not found: {config_path}. Run 'qai-cli init' to create one."
|
||||
f"Config file not found: {config_path}. Run 'qc-cli init' to create one."
|
||||
)
|
||||
with open(config_path) as f:
|
||||
data = yaml.safe_load(f)
|
||||
|
||||
@@ -39,7 +39,7 @@ class TrainingConfig(BaseModel):
|
||||
|
||||
|
||||
class SageMakerConfig(BaseModel):
|
||||
role_name: str = "qai-cli-sagemaker-role"
|
||||
role_name: str = "qc-cli-sagemaker-role"
|
||||
training: TrainingConfig = Field(default_factory=TrainingConfig)
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import json
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
||||
INFRA_STATE_FILE = ".qai-cli-infra.json"
|
||||
INFRA_STATE_FILE = ".qc-cli-infra.json"
|
||||
|
||||
|
||||
def state_path(config_dir: str) -> Path:
|
||||
|
||||
@@ -8,7 +8,7 @@ from src.commands import infra
|
||||
from src.config import Config
|
||||
|
||||
app = typer.Typer(
|
||||
help="qai-cli: End-to-end model managment for Qualcomm AI Hub.",
|
||||
help="qc-cli: End-to-end model managment for Qualcomm AI Hub.",
|
||||
no_args_is_help=True,
|
||||
)
|
||||
app.add_typer(infra.app, name="infra")
|
||||
|
||||
Reference in New Issue
Block a user