Source code for oumi.cli.cli_utils
# Copyright 2025 - Oumi
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import os
from enum import Enum
from pathlib import Path
from typing import Annotated, Optional
import requests
import typer
import yaml
from requests.exceptions import RequestException
from rich.console import Console
from oumi.utils.logging import logger
CONTEXT_ALLOW_EXTRA_ARGS = {"allow_extra_args": True, "ignore_unknown_options": True}
CONFIG_FLAGS = ["--config", "-c"]
OUMI_FETCH_DIR = "~/.oumi/fetch"
OUMI_GITHUB_RAW = "https://raw.githubusercontent.com/oumi-ai/oumi/main"
_OUMI_PREFIX = "oumi://"
CONSOLE = Console()
[docs]
class LogLevel(str, Enum):
"""The available logging levels."""
DEBUG = logging.getLevelName(logging.DEBUG)
INFO = logging.getLevelName(logging.INFO)
WARNING = logging.getLevelName(logging.WARNING)
ERROR = logging.getLevelName(logging.ERROR)
CRITICAL = logging.getLevelName(logging.CRITICAL)
[docs]
def set_log_level(level: Optional[LogLevel]):
"""Sets the logging level for the current command.
Args:
level (Optional[LogLevel]): The log level to use.
"""
if not level:
return
uppercase_level = level.upper()
logger.setLevel(uppercase_level)
CONSOLE.print(f"Set log level to [yellow]{uppercase_level}[/yellow]")
LOG_LEVEL_TYPE = Annotated[
Optional[LogLevel],
typer.Option(
"--log-level",
"-log",
help="The logging level for the specified command.",
show_default=False,
show_choices=True,
case_sensitive=False,
callback=set_log_level,
),
]
def _resolve_oumi_prefix(
config_path: str, output_dir: Optional[Path] = None
) -> tuple[str, Path]:
"""Resolves oumi:// prefix and determines output directory.
Args:
config_path: Path that may contain oumi:// prefix
output_dir: Optional output directory override
Returns:
tuple[str, Path]: (cleaned path, output directory)
"""
if config_path.lower().startswith(_OUMI_PREFIX):
config_path = config_path[len(_OUMI_PREFIX) :]
config_dir = output_dir or os.environ.get("OUMI_DIR") or OUMI_FETCH_DIR
config_dir = Path(config_dir).expanduser()
config_dir.mkdir(parents=True, exist_ok=True)
return config_path, config_dir
[docs]
def resolve_and_fetch_config(
config_path: str, output_dir: Optional[Path] = None, force: bool = True
) -> Path:
"""Resolve oumi:// prefix and fetch config if needed.
Args:
config_path: Original config path that may contain oumi:// prefix
output_dir: Optional override for output directory
force: Whether to overwrite an existing config
Returns:
Path: Local path to the config file
"""
if not config_path.lower().startswith(_OUMI_PREFIX):
return Path(config_path)
# Remove oumi:// prefix if present
new_config_path, config_dir = _resolve_oumi_prefix(config_path, output_dir)
try:
# Check destination first
local_path = (config_dir or Path(OUMI_FETCH_DIR).expanduser()) / new_config_path
if local_path.exists() and not force:
msg = f"Config already exists at {local_path}. Use --force to overwrite"
logger.error(msg)
raise RuntimeError(msg)
# Fetch from GitHub
github_url = f"{OUMI_GITHUB_RAW}/{new_config_path.lstrip('/')}"
response = requests.get(github_url)
response.raise_for_status()
config_content = response.text
# Validate YAML
yaml.safe_load(config_content)
# Save to destination
if local_path.exists():
logger.warning(f"Overwriting existing config at {local_path}")
local_path.parent.mkdir(parents=True, exist_ok=True)
with open(local_path, "w") as f:
f.write(config_content)
logger.info(f"Successfully downloaded config to {local_path}")
except RequestException as e:
logger.error(f"Failed to download config from GitHub: {e}")
raise
except yaml.YAMLError:
logger.error("Invalid YAML configuration")
raise
return Path(local_path)