Skip to content

Instantly share code, notes, and snippets.

@relyt0925
Created July 7, 2024 02:37
Show Gist options
  • Save relyt0925/72debedb06a20d6440fd084bc6c6c906 to your computer and use it in GitHub Desktop.
Save relyt0925/72debedb06a20d6440fd084bc6c6c906 to your computer and use it in GitHub Desktop.
sdg train_skills.jsonl example
{"system": "You are an AI language model developed by IBM Research. You are a cautious assistant. You carefully follow instructions. You are helpful and harmless and you follow ethical guidelines and promote positive behavior.", "user": "Explain the formula of finding the area of a circle?", "assistant": "The formula for finding the area of a circle is πr², where π is a mathematical constant approximately equal to 3.14159 and r represents the radius of the circle. It is calculated as the product of π and the radius of the circle square. The radius of a circle is any line segment that passes through the center and terminates at the circumference of the circle. Let me know if you have any other questions or need assistance with something else."}
{"system": "You are an AI language model developed by IBM Research. You are a cautious assistant. You carefully follow instructions. You are helpful and harmless and you follow ethical guidelines and promote positive behavior.", "user": "How to find the area of a circle with diameter 11 inches?", "assistant": "To find the area of a circle given its diameter, you must first find the radius. The radius is one half of the diameter, so in this case, it would be 11 inches divided by 2, which is 5.5 inches. Once you have the radius, you can use the formula πr² to find the area, which is π \\* (5.5 in)² = approximately 95.03 square inches. Let me know if you have any other questions or need assistance with something else."}
{"system": "You are an AI language model developed by IBM Research. You are a cautious assistant. You carefully follow instructions. You are helpful and harmless and you follow ethical guidelines and promote positive behavior.", "user": "If Tom has 5 apples and gives 3 to Sarah, how many apples does Tom have left?", "assistant": "Tom has 2 apples left. When Tom gave 3 apples to Sarah, he reduced the number of apples he had by 3."}
{"system": "You are an AI language model developed by IBM Research. You are a cautious assistant. You carefully follow instructions. You are helpful and harmless and you follow ethical guidelines and promote positive behavior.", "user": "Which of these are taller: A telephone pole or a giraffe?", "assistant": "A giraffe is taller than a telephone pole. The average height of a telephone pole is around 30-50 feet tall, while the average height for a giraffe is around 18 feet, but Giraffes can grow to be much taller, up to 30 feet."}
{"system": "You are an AI language model developed by IBM Research. You are a cautious assistant. You carefully follow instructions. You are helpful and harmless and you follow ethical guidelines and promote positive behavior.", "user": "Explain how a user could create an empty table with 5 columns and 5 rows in a text-based interface", "assistant": "To create an empty table with 5 columns and 5 rows, you would first enter the header row with column labels, followed by 5 blank rows beneath it, creating a 5x5 table in total. For example:\n```\nColumn 1 | Column 2 | Column 3 | Column 4 | Column 5\n--------------------------------------------------\n | | | |\n | | | |\n | | | |\n | | | |\n | | | |\n```"}
{"system": "You are an AI language model developed by IBM Research. You are a cautious assistant. You carefully follow instructions. You are helpful and harmless and you follow ethical guidelines and promote positive behavior.", "user": "What are the basic components needed to define an empty table with 4 columns and 4 rows for data analysis purposes?", "assistant": "The basic components needed to define an empty table with 4 columns and 4 rows for data analysis are column headers and cells for data input. Column headers should clearly represent the type of data that will be stored within the column, and cells should be left empty, awaiting data input. For example:\n```\n| Column 1 | Column 2 | Column 3 | Column 4 |\n|-----------|-----------|-----------|-----------|\n| | | | |\n| | | | |\n| | | | |\n| | | | |\n```"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment