CoolFace
Datasetpublic

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.

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes252downloads
Dataset Card

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

python
from datasets import load_dataset

ds = load_dataset("dacorvo/transformers-coding-session-captures", split="train")

Schema

columndescription
run_idagentcap run id; matches the per-run folder in the traces dataset
request_idUUID minted by the capture proxy
modelModel id from the captured request body
captured_atEpoch seconds when the request was captured
requestRaw OpenAI request body, JSON-stringified
responseRaw OpenAI response body, JSON-stringified (or {"stream": true, "raw": ...} for SSE)
served_byPer-response X-Served-By header (HF Router sub-provider routing)
served_build_infoPer-response X-Build-Info header
served_modelPer-response body-echoed model
providerDerived from the proxy upstream URL (constant per file)
upstream_urlProxy upstream URL at capture time (constant per file)

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.