Kiria-Nozan/TRIM-gpt-5.4-mini-16-tasks
TRIM Agent Reasoning Messages (HF Public Export) This directory is a Hugging Face-friendly public export of the TRIM agent reasoning SFT data. What Is Included Provider: openrouter Model: openai/gpt-5.4-mini Splits present: train Records in this export manifest: 13939 Tasks in this split: AMES, BBB_Martins, Bioavailability_Ma, CYP2C9_Substrate_CarbonMangels, CYP2D6_Substrate_CarbonMangels, CYP3A4_Substrate_CarbonMangels, Carcinogens_Lagunin, ClinTox, DILI… See the full description on the dataset page: https://huggingface.co/datasets/Kiria-Nozan/TRIM-gpt-5.4-mini-16-tasks.
TRIM Agent Reasoning Messages (HF Public Export)
This directory is a Hugging Face-friendly public export of the TRIM agent reasoning SFT data.
What Is Included
- Provider:
openrouter - Model:
openai/gpt-5.4-mini - Splits present:
train - Records in this export manifest:
13939 - Tasks in this split:
AMES, BBB_Martins, Bioavailability_Ma, CYP2C9_Substrate_CarbonMangels, CYP2D6_Substrate_CarbonMangels, CYP3A4_Substrate_CarbonMangels, Carcinogens_Lagunin, ClinTox, DILI, HIA_Hou, PAMPA_NCATS, Pgp_Broccatelli, SARSCoV2_3CLPro_Diamond, SARSCoV2_Vitro_Touret, Skin_Reaction, hERG
Record Schema
Each JSONL line is one training example with these top-level fields:
schema_versiontasksplitsample_indexsample_idsmilesgt_labelfinal_answer_optionmessages
The messages field stores a tool-augmented chat transcript, including nested tool_calls and the assistant thinking text used in the original SFT export.
Public Sanitization
- Local absolute
source_pathshave been removed from the sample records by default. - Task-level export metadata is stored under
metadata/manifest.json.
Loading Example
from datasets import load_dataset
ds = load_dataset(
"json",
data_files={"train": "train/*.jsonl"},
)