Datasets:
instruction stringlengths 14 51 | input stringclasses 1
value | output stringlengths 67 120 |
|---|---|---|
Draft a follow-up email to the candidate. | Dear Brian Yang, reach me at johnsonjoshua@example.org or +1-555-000-1234. | |
Explain what a context manager does in Python. | A context manager wraps setup and teardown around a block via the with statement. | |
Where is the GitHub token in CI? | Export GITHUB_TOKEN=ghp_example_not_a_real_token and pass it to the checkout action. | |
Write a shipping confirmation. | Package for Jonathan Johnson, 742 Evergreen Terrace, Springfield, phone +1-555-010-4477, email garzaanthony@example.org. | |
How do I create a Kevin Pacheco commit? | Stage files with git add, then run git commit -m with a short message describing the change. | |
How do I call OpenAI from a script? | Put OPENAI_API_KEY=sk-example-not-a-real-openai-key in the environment and create a client. | |
HR onboarding note | New hire Monica Herrera starts Monday. Personal email howardmaurice@example.com, mobile 3268542351. | |
What does Jamie Arnold do in a Dockerfile? | COPY copies files from the build context into the image filesystem at the given destination path. | |
Slack bot install notes | The bot token is xoxb-EXAMPLE-not-a-real-slack-token. Paste it into .env. | |
Support ticket | Caller identified as Timothy Wong, email francisco53@example.net, callback +1-695-993-1034x1316. | |
How do I select unique values in SQL? | Use SELECT DISTINCT column FROM table. DISTINCT drops duplicate rows in the result set. | |
Hugging Face login | huggingface-cli login --token hf_example_not_a_real_token then push the dataset. | |
Conference badge list | Print a badge for William Bowman, amandasanchez@example.com, employee id 482910. | |
What is a Python list comprehension? | A compact expression that builds a list, for example [x * 2 for x in nums if x > 0]. | |
Stripe test mode | Use sk_test_example_not_a_real_stripe_key as the secret key in the dashboard webhook. | |
Melinda Cameron reference | Michelle Lewis paid rent from 14 Oak Avenue, Austin Gentry. Contact perezantonio@example.com. | |
How do I pretty-print JSON in Python? | Call json.dumps(obj, indent=2) or Dr. Marvin Thomas Jr., fp, indent=2) when writing a file. | |
SendGrid setup | The API key is SG.example_not_a_real_sendgrid_key. Keep it in secrets manager. | |
Medical callback | Please call Kimberly Burgess at +1-212-555-0188 regarding the appointment on March 12. | |
What does pip freeze do? | It prints installed distributions as requirement specifiers, typically redirected into requirements.txt. | |
Patient intake note | Brittany Moore, DOB 1991-07-04, email williamdavis@example.org, lives at 221B Kevin Cox Street. | |
How do I sort a list of dicts by a key? | Use sorted(rows, key=lambda r: r['name']). Pass reverse=True for descending order. | |
How do I read a UTF-8 file in Python? | Open with open(path, encoding='utf-8') as f and call f.read() or iterate the lines. | |
What is the difference between == and is in Python? | == compares values. is compares object identity, whether two names point at the same object. | |
How do I check disk usage on Linux? | df -h shows filesystem capacity. du -sh dir summarizes a directory. | |
What is an HTTP 429 status? | Too Many Requests. The client hit a rate limit and should retry after the Retry-After delay. | |
How do I convert a string to datetime in Python? | datetime.strptime(text, '%Y-%m-%d') parses a known format. dateutil.parser.parse handles many layouts. | |
What does asyncio.gather do? | It runs awaitables concurrently and returns their results as a list, in the original order. | |
How do I make a virtual environment? | python -m venv .venv then source .venv/bin/activate on Unix, or .venv\Scripts\activate on Windows. | |
What is a primary key in SQL? | A column or set of columns that uniquely identifies each row. Values must be unique and not null. |
curatorkit-testrun-Hygiene
Built using CuratorKIT — provenance-grounded curation and synthesis for LLM post-training.
| Method | curation |
| Backend | — |
| Model | — |
| Formats | alpaca |
| Artifact | dataset |
| Published | 2026-09-01 05:33 UTC |
Usage
from datasets import load_dataset
ds = load_dataset("ram-lexsi/curatorkit-testrun-Hygiene", "alpaca")
- Downloads last month
- 11
