What this tool does
CSV to JSONL Converter
The default output is UTF-8 JSONL with one object per CSV record and strings preserved. Chat mode builds a messages array from prompt and completion, with an optional system column.
Private, local-first data tools
Turn each CSV record into one JSON object per line, or prepare chat-style training examples from prompt and completion columns. No file upload is required.
Chat mode maps prompt to user, completion to assistant and optional system to system. Other columns are omitted. Content stays as text. Check the training platform’s schema and dataset limits separately.
The parser runs off the main thread. Once loaded, you can search, sort, validate, repair and export without an account.
This synthetic support example shows why a valid JSONL file is not automatically a valid training dataset. The same CSV can produce flat records or nested chat messages. Choose the shape required by your training pipeline before exporting.
prompt,completion
What are your opening hours?,We open from 9am to 6pm.{"prompt":"What are your opening hours?","completion":"We open from 9am to 6pm."}{"messages":[{"role":"user","content":"What are your opening hours?"},{"role":"assistant","content":"We open from 9am to 6pm."}]}Use the exact lowercase headers prompt and completion, with an optional system column. Chat mode uses only those three columns and omits others. Empty prompts or answers block export. Quotes and embedded newlines are JSON-escaped, so a conversation remains on one physical line rather than breaking the dataset.
Open the original file to decode UTF-8, Shift_JIS/CP932 or EUC-JP correctly. Output JSONL uses UTF-8. Generic mode offers type inference; chat content always remains text. Search and sorting affect the selected export view, so check whether you are saving matching rows or all rows. JSONL describes the output structure, not an unlimited-memory processing guarantee.
This preset creates single-turn text conversations. It does not generate multi-turn histories, tool calls or image training records. Check sensitive content, duplicates, evaluation-data leakage and the destination’s current requirements separately; conversion does not certify training readiness.
What this tool does
The default output is UTF-8 JSONL with one object per CSV record and strings preserved. Chat mode builds a messages array from prompt and completion, with an optional system column.
Local files are read by a dedicated browser worker and are not uploaded to an application server. File contents and filenames are not included in analytics events. Loading a public URL is an explicit direct request from your browser and may fail when the remote server blocks CORS.
The output contains one JSON object per line, the structure used for NDJSON ingestion. Check the destination’s extension and final-newline requirements.
Generic JSONL preserves CSV column names; chat mode creates messages records. Neither guarantees acceptance by a training service. Validate its schema, example counts and content requirements before uploading.