57 lines
1.1 KiB
TOML
57 lines
1.1 KiB
TOML
# THIS IS AUTOGENERATED. DO NOT EDIT MANUALLY
|
|
version = 1
|
|
name = "mp-ai-module-controller"
|
|
|
|
[setup]
|
|
script = "scripts/codex-setup.sh"
|
|
|
|
[[actions]]
|
|
name = "Build"
|
|
icon = "tool"
|
|
command = "cargo build"
|
|
|
|
[[actions]]
|
|
name = "Test"
|
|
icon = "tool"
|
|
command = "cargo test"
|
|
|
|
[[actions]]
|
|
name = "Generate Dictionary"
|
|
icon = "tool"
|
|
command = "cargo run -- dictionary generate"
|
|
|
|
[[actions]]
|
|
name = "Precommit Check"
|
|
icon = "tool"
|
|
command = "scripts/precommit-check.sh"
|
|
|
|
[[actions]]
|
|
name = "Training Data Dry Run"
|
|
icon = "tool"
|
|
command = "python3 scripts/generate_training_data.py --dry-run"
|
|
|
|
[[actions]]
|
|
name = "Deploy Training Data"
|
|
icon = "tool"
|
|
command = "scripts/deploy_training_data.sh"
|
|
|
|
[[actions]]
|
|
name = "Deploy Training Data With Mimir"
|
|
icon = "tool"
|
|
command = "ENABLE_MIMIR_SDG=1 scripts/deploy_training_data.sh"
|
|
|
|
[[actions]]
|
|
name = "Run Logger"
|
|
icon = "run"
|
|
command = "cargo run -- run logger --payload '{\"message\":\"hello from codex environment\"}'"
|
|
|
|
[[actions]]
|
|
name = "Query Logger"
|
|
icon = "run"
|
|
command = "cargo run -- query \"log hello from codex\""
|
|
|
|
[[actions]]
|
|
name = "Serve Llama"
|
|
icon = "run"
|
|
command = "cargo run -- serve"
|