dacorvo/transformers-coding-session-captures
dacorvo/transformers-coding-session-captures HTTP captures of agent ↔ model interactions — one parquet row per /v1/chat/completions call. Produced by agentcap. Native session traces for the same runs live in companion datasets named transformers-coding-session-<agent>-traces. They're all grouped under the transformers-coding-session Collection alongside this dataset. Join on run_id. Loading from datasets import load_dataset ds =… See the full description on the dataset page: https://huggingface.co/datasets/dacorvo/transformers-coding-session-captures.
dacorvo/transformers-coding-session-captures
HTTP captures of agent ↔ model interactions — one parquet row per /v1/chat/completions call. Produced by agentcap.
Native session traces for the same runs live in companion datasets named transformers-coding-session-<agent>-traces. They're all grouped under the transformers-coding-session Collection alongside this dataset. Join on run_id.
Loading
from datasets import load_dataset
ds = load_dataset("dacorvo/transformers-coding-session-captures", split="train")Schema
request and response are JSON strings; consumers json.loads(...) them. To recover per-message token ranges, render request.messages through the model's chat template yourself — transformers.AutoTokenizer.apply_chat_template.
