CLI API ReferenceΒΆ
Last Updated: 2026-06-22
Version: 1.0.0 | Release Date: 2026-06-22
OverviewΒΆ
The Codex CLI provides command-line interfaces for:
- Training models
- Running evaluations
- Managing datasets
- Experiment tracking
- Configuration management
Main CLI Entry PointsΒΆ
codex.cliΒΆ
Main CLI module providing command-line interface entry points.
For detailed CLI documentation, see:
- CLI Module - CLI implementation details
- Reference CLI - CLI reference documentation
- API Index - Main API documentation index
UsageΒΆ
# View available commands
python -m codex.cli --help
# Train a model
python -m codex.cli train --config configs/train.yaml
# Run evaluation
python -m codex.cli eval --model-path models/best.pt
# Manage datasets
python -m codex.cli dataset --list
Related DocumentationΒΆ
- CLI Implementation
- Reference Documentation
- Unified Training - Training guide
- PEFT Configuration - Configuration reference