Dataset Viewer
Auto-converted to Parquet Duplicate
instruction
stringclasses
99 values
answer
stringclasses
22 values
tag
stringclasses
23 values
split_kind
stringclasses
1 value
text
stringclasses
99 values
Make a Python function named add that adds two numbers.
def add(a, b): return a + b
code_add
train_seen
Instruction: Make a Python function named add that adds two numbers. Answer: def add(a, b): return a + b <END>
Make a Python function named divide that divides a by b.
def divide(a, b): return a / b
code_divide
train_seen
Instruction: Make a Python function named divide that divides a by b. Answer: def divide(a, b): return a / b <END>
Write the SUBTRACT function.
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Write the SUBTRACT function. Answer: def subtract(a, b): return a - b <END>
Write the ADD function.
def add(a, b): return a + b
code_add
train_seen
Instruction: Write the ADD function. Answer: def add(a, b): return a + b <END>
Do you know what Evan had for lunch today?
I don't know from the given information.
idk_food_today
train_seen
Instruction: Do you know what Evan had for lunch today? Answer: I don't know from the given information. <END>
What color is the sky on a clear day?
Blue.
sky_color
train_seen
Instruction: What color is the sky on a clear day? Answer: Blue. <END>
What is the first move before touching project files?
Inspect the current files first.
inspect_first
train_seen
Instruction: What is the first move before touching project files? Answer: Inspect the current files first. <END>
Do you know my favorite movie?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: Do you know my favorite movie? Answer: I don't know from the given information. <END>
France has what capital?
Paris.
capital_france
train_seen
Instruction: France has what capital? Answer: Paris. <END>
What should you do if the evidence is missing?
Ask for the missing evidence.
evidence_missing
train_seen
Instruction: What should you do if the evidence is missing? Answer: Ask for the missing evidence. <END>
Do you know what Evan had for lunch today?
I don't know from the given information.
idk_food_today
train_seen
Instruction: Do you know what Evan had for lunch today? Answer: I don't know from the given information. <END>
Do you know my favorite movie?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: Do you know my favorite movie? Answer: I don't know from the given information. <END>
Classify sentiment: I love this tool.
positive
sentiment_positive
train_seen
Instruction: Classify sentiment: I love this tool. Answer: positive <END>
In Python, what is return for?
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: In Python, what is return for? Answer: A return statement sends a value back from a function. <END>
Before modifying a repo, what should you inspect?
Inspect the current files first.
inspect_first
train_seen
Instruction: Before modifying a repo, what should you inspect? Answer: Inspect the current files first. <END>
Rewrite professionally: I can't make it.
I am unable to attend.
rewrite_professional_attend
train_seen
Instruction: Rewrite professionally: I can't make it. Answer: I am unable to attend. <END>
Write the ADD function.
def add(a, b): return a + b
code_add
train_seen
Instruction: Write the ADD function. Answer: def add(a, b): return a + b <END>
Rewrite professionally: I can't make it.
I am unable to attend.
rewrite_professional_attend
train_seen
Instruction: Rewrite professionally: I can't make it. Answer: I am unable to attend. <END>
User: My name is Evan. User: What is my name?
Evan.
context_name
train_seen
Instruction: User: My name is Evan. User: What is my name? Answer: Evan. <END>
Make a Python function named subtract that subtracts b from a.
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Make a Python function named subtract that subtracts b from a. Answer: def subtract(a, b): return a - b <END>
What should happen before guessing a patch?
Ask for the missing evidence.
evidence_missing
train_seen
Instruction: What should happen before guessing a patch? Answer: Ask for the missing evidence. <END>
Tell me my favorite movie.
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: Tell me my favorite movie. Answer: I don't know from the given information. <END>
Name the capital city of France.
Paris.
capital_france
train_seen
Instruction: Name the capital city of France. Answer: Paris. <END>
What is my favorite movie?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: What is my favorite movie? Answer: I don't know from the given information. <END>
On a clear day, what color is the sky?
Blue.
sky_color
train_seen
Instruction: On a clear day, what color is the sky? Answer: Blue. <END>
Create subtract so it computes a minus b.
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Create subtract so it computes a minus b. Answer: def subtract(a, b): return a - b <END>
Clear sky color?
Blue.
sky_color
train_seen
Instruction: Clear sky color? Answer: Blue. <END>
Condense this sentence: I am going to arrive late today.
I will be late today.
rewrite_short_late
train_seen
Instruction: Condense this sentence: I am going to arrive late today. Answer: I will be late today. <END>
Write divide(a, b).
def divide(a, b): return a / b
code_divide
train_seen
Instruction: Write divide(a, b). Answer: def divide(a, b): return a / b <END>
In Python, what is return for?
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: In Python, what is return for? Answer: A return statement sends a value back from a function. <END>
Classify sentiment: This is broken.
negative
sentiment_negative
train_seen
Instruction: Classify sentiment: This is broken. Answer: negative <END>
France has what capital?
Paris.
capital_france
train_seen
Instruction: France has what capital? Answer: Paris. <END>
Rewrite professionally: I can't make it.
I am unable to attend.
rewrite_professional_attend
train_seen
Instruction: Rewrite professionally: I can't make it. Answer: I am unable to attend. <END>
Before changing code, what should happen first?
Inspect the current files first.
inspect_first
train_seen
Instruction: Before changing code, what should happen first? Answer: Inspect the current files first. <END>
Context: The user's name is Evan. Question: What is the user's name?
Evan.
context_name
train_seen
Instruction: Context: The user's name is Evan. Question: What is the user's name? Answer: Evan. <END>
Tell me what Evan ate today.
I don't know from the given information.
idk_food_today
train_seen
Instruction: Tell me what Evan ate today. Answer: I don't know from the given information. <END>
Rewrite professionally: I can't make it.
I am unable to attend.
rewrite_professional_attend
train_seen
Instruction: Rewrite professionally: I can't make it. Answer: I am unable to attend. <END>
Return the product using multiply(a, b).
def multiply(a, b): return a * b
code_multiply
train_seen
Instruction: Return the product using multiply(a, b). Answer: def multiply(a, b): return a * b <END>
What movie do I like most?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: What movie do I like most? Answer: I don't know from the given information. <END>
What movie do I like most?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: What movie do I like most? Answer: I don't know from the given information. <END>
Classify sentiment: I love this tool.
positive
sentiment_positive
train_seen
Instruction: Classify sentiment: I love this tool. Answer: positive <END>
What is the first move before touching project files?
Inspect the current files first.
inspect_first
train_seen
Instruction: What is the first move before touching project files? Answer: Inspect the current files first. <END>
In Python, what is return for?
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: In Python, what is return for? Answer: A return statement sends a value back from a function. <END>
What food did Evan eat today?
I don't know from the given information.
idk_food_today
train_seen
Instruction: What food did Evan eat today? Answer: I don't know from the given information. <END>
What is my favorite movie?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: What is my favorite movie? Answer: I don't know from the given information. <END>
Explain a return statement in Python.
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: Explain a return statement in Python. Answer: A return statement sends a value back from a function. <END>
What should you do before editing a project?
Inspect the current files first.
inspect_first
train_seen
Instruction: What should you do before editing a project? Answer: Inspect the current files first. <END>
What should you do before editing a project?
Inspect the current files first.
inspect_first
train_seen
Instruction: What should you do before editing a project? Answer: Inspect the current files first. <END>
Create multiply so it computes a times b.
def multiply(a, b): return a * b
code_multiply
train_seen
Instruction: Create multiply so it computes a times b. Answer: def multiply(a, b): return a * b <END>
Is water able to freeze? Give a reason.
Yes, because water can become ice when it is cold enough.
yes_water_freeze
train_seen
Instruction: Is water able to freeze? Give a reason. Answer: Yes, because water can become ice when it is cold enough. <END>
Before modifying a repo, what should you inspect?
Inspect the current files first.
inspect_first
train_seen
Instruction: Before modifying a repo, what should you inspect? Answer: Inspect the current files first. <END>
In Python, what is return for?
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: In Python, what is return for? Answer: A return statement sends a value back from a function. <END>
Create subtract so it computes a minus b.
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Create subtract so it computes a minus b. Answer: def subtract(a, b): return a - b <END>
Make a Python function named subtract that subtracts b from a.
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Make a Python function named subtract that subtracts b from a. Answer: def subtract(a, b): return a - b <END>
Create subtract so it computes a minus b.
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Create subtract so it computes a minus b. Answer: def subtract(a, b): return a - b <END>
Write add(a, b).
def add(a, b): return a + b
code_add
train_seen
Instruction: Write add(a, b). Answer: def add(a, b): return a + b <END>
In Python, what is return for?
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: In Python, what is return for? Answer: A return statement sends a value back from a function. <END>
What is your role?
I answer the user's request directly.
assistant_role
train_seen
Instruction: What is your role? Answer: I answer the user's request directly. <END>
Condense this sentence: I am going to arrive late today.
I will be late today.
rewrite_short_late
train_seen
Instruction: Condense this sentence: I am going to arrive late today. Answer: I will be late today. <END>
Label the input type: The cat sat down.
prose
classify_prose
train_seen
Instruction: Label the input type: The cat sat down. Answer: prose <END>
Give the usual clear-day sky color.
Blue.
sky_color
train_seen
Instruction: Give the usual clear-day sky color. Answer: Blue. <END>
Do you know my favorite movie?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: Do you know my favorite movie? Answer: I don't know from the given information. <END>
Can water freeze? Answer yes or no with a reason.
Yes, because water can become ice when it is cold enough.
yes_water_freeze
train_seen
Instruction: Can water freeze? Answer yes or no with a reason. Answer: Yes, because water can become ice when it is cold enough. <END>
What is your role?
I answer the user's request directly.
assistant_role
train_seen
Instruction: What is your role? Answer: I answer the user's request directly. <END>
What should happen before guessing a patch?
Ask for the missing evidence.
evidence_missing
train_seen
Instruction: What should happen before guessing a patch? Answer: Ask for the missing evidence. <END>
Tell me my favorite movie.
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: Tell me my favorite movie. Answer: I don't know from the given information. <END>
What movie do I like most?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: What movie do I like most? Answer: I don't know from the given information. <END>
Explain a return statement in Python.
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: Explain a return statement in Python. Answer: A return statement sends a value back from a function. <END>
What color is the sky on a clear day?
Blue.
sky_color
train_seen
Instruction: What color is the sky on a clear day? Answer: Blue. <END>
Create divide so it computes a over b.
def divide(a, b): return a / b
code_divide
train_seen
Instruction: Create divide so it computes a over b. Answer: def divide(a, b): return a / b <END>
Write the MULTIPLY function.
def multiply(a, b): return a * b
code_multiply
train_seen
Instruction: Write the MULTIPLY function. Answer: def multiply(a, b): return a * b <END>
Write the DIVIDE function.
def divide(a, b): return a / b
code_divide
train_seen
Instruction: Write the DIVIDE function. Answer: def divide(a, b): return a / b <END>
Yes or no: does a square have five sides? Explain.
No, because a square has exactly four sides.
no_square_five_sides
train_seen
Instruction: Yes or no: does a square have five sides? Explain. Answer: No, because a square has exactly four sides. <END>
Label the input type: The cat sat down.
prose
classify_prose
train_seen
Instruction: Label the input type: The cat sat down. Answer: prose <END>
Create subtract so it computes a minus b.
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Create subtract so it computes a minus b. Answer: def subtract(a, b): return a - b <END>
Before changing code, what should happen first?
Inspect the current files first.
inspect_first
train_seen
Instruction: Before changing code, what should happen first? Answer: Inspect the current files first. <END>
Make a Python function named add that adds two numbers.
def add(a, b): return a + b
code_add
train_seen
Instruction: Make a Python function named add that adds two numbers. Answer: def add(a, b): return a + b <END>
What is the first move before touching project files?
Inspect the current files first.
inspect_first
train_seen
Instruction: What is the first move before touching project files? Answer: Inspect the current files first. <END>
What do you do for the user?
I answer the user's request directly.
assistant_role
train_seen
Instruction: What do you do for the user? Answer: I answer the user's request directly. <END>
France has what capital?
Paris.
capital_france
train_seen
Instruction: France has what capital? Answer: Paris. <END>
What is the first move before touching project files?
Inspect the current files first.
inspect_first
train_seen
Instruction: What is the first move before touching project files? Answer: Inspect the current files first. <END>
Write divide(a, b).
def divide(a, b): return a / b
code_divide
train_seen
Instruction: Write divide(a, b). Answer: def divide(a, b): return a / b <END>
How should you help?
I answer the user's request directly.
assistant_role
train_seen
Instruction: How should you help? Answer: I answer the user's request directly. <END>
What food did Evan eat today?
I don't know from the given information.
idk_food_today
train_seen
Instruction: What food did Evan eat today? Answer: I don't know from the given information. <END>
Return the product using multiply(a, b).
def multiply(a, b): return a * b
code_multiply
train_seen
Instruction: Return the product using multiply(a, b). Answer: def multiply(a, b): return a * b <END>
Label the sentiment: This is broken.
negative
sentiment_negative
train_seen
Instruction: Label the sentiment: This is broken. Answer: negative <END>
Explain what a return statement does.
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: Explain what a return statement does. Answer: A return statement sends a value back from a function. <END>
Before changing code, what should happen first?
Inspect the current files first.
inspect_first
train_seen
Instruction: Before changing code, what should happen first? Answer: Inspect the current files first. <END>
What should you request before changing code blindly?
Ask for the missing evidence.
evidence_missing
train_seen
Instruction: What should you request before changing code blindly? Answer: Ask for the missing evidence. <END>
Explain a return statement in Python.
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: Explain a return statement in Python. Answer: A return statement sends a value back from a function. <END>
Before changing code, what should happen first?
Inspect the current files first.
inspect_first
train_seen
Instruction: Before changing code, what should happen first? Answer: Inspect the current files first. <END>
What should you do when you cannot prove the cause?
Ask for the missing evidence.
evidence_missing
train_seen
Instruction: What should you do when you cannot prove the cause? Answer: Ask for the missing evidence. <END>
What is the first move before touching project files?
Inspect the current files first.
inspect_first
train_seen
Instruction: What is the first move before touching project files? Answer: Inspect the current files first. <END>
Do you know my favorite movie?
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: Do you know my favorite movie? Answer: I don't know from the given information. <END>
Type label: The cat sat down.
prose
classify_prose
train_seen
Instruction: Type label: The cat sat down. Answer: prose <END>
Tell me my favorite movie.
I don't know from the given information.
idk_favorite_movie
train_seen
Instruction: Tell me my favorite movie. Answer: I don't know from the given information. <END>
What does return do in a Python function?
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: What does return do in a Python function? Answer: A return statement sends a value back from a function. <END>
How should you help?
I answer the user's request directly.
assistant_role
train_seen
Instruction: How should you help? Answer: I answer the user's request directly. <END>
Return the difference using subtract(a, b).
def subtract(a, b): return a - b
code_subtract
train_seen
Instruction: Return the difference using subtract(a, b). Answer: def subtract(a, b): return a - b <END>
In Python, what is return for?
A return statement sends a value back from a function.
return_statement
train_seen
Instruction: In Python, what is return for? Answer: A return statement sends a value back from a function. <END>
End of preview. Expand in Data Studio

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

TT639 Tiny Assistant Ladder v1

Goal: Prove a small assistant behavior ladder after TT638D.

This is not a broad chatbot or general knowledge claim. It tests exact tiny behaviors:

  • evidence-missing / inspect-first behavior
  • simple Q/A
  • tiny explanations
  • four-function code answers
  • rewrites
  • classification
  • yes/no with reason
  • I don't know behavior
  • tiny context/multi-turn inside one prompt

Gate: TT639 only starts after TT638D dense + dyadic/Mercy reconstruction proof.

If heldout fails: Do not train blindly forever. Inspect failed prompts and make TT639B targeted coverage.

Downloads last month
73