[codex_ml.data_loaders]
csv = codex_ml.data.registry:load_csv
jsonl = codex_ml.data.registry:load_jsonl
lines = codex_ml.data.registry:load_line_dataset

[codex_ml.datasets]
csv = codex_ml.data.registry:load_csv
jsonl = codex_ml.data.registry:load_jsonl
lines = codex_ml.data.registry:load_line_dataset

[codex_ml.metrics]
exact_match = codex_ml.metrics.registry:exact_match
f1 = codex_ml.metrics.registry:f1
ppl = codex_ml.metrics.registry:perplexity
token_accuracy = codex_ml.metrics.registry:token_accuracy

[codex_ml.models]
bert_base_uncased = codex_ml.models.registry:build_default_bert
minilm = codex_ml.models.registry:build_minilm

[codex_ml.reward_models]
heuristic = codex_ml.plugins.registries:reward_model_heuristic

[codex_ml.tokenizers]
hf = codex_ml.registry.tokenizers:build_hf_tokenizer

[codex_ml.trainers]
functional = codex_ml.registry.trainers:load_functional_trainer

[console_scripts]
codex-cli = codex_ml.cli.simple_cli:main
codex-ml = codex_ml.cli.main:cli
codex-ml-cli = codex_ml.cli.main:cli
codex-smoke = codex_cli.app:app
