update readme

This commit is contained in:
Minh Le
2025-07-22 09:58:26 -07:00
parent 3cc81f6d7d
commit 765472ef94
5 changed files with 95 additions and 562 deletions

2
.gitignore vendored
View File

@@ -56,3 +56,5 @@ venv.bak/
# IPython
profile_default/
ipython_config.py
data/

View File

@@ -21,10 +21,61 @@ source .venv/bin/activate
OPENAI_API_KEY=...
```
## Running Experiments
## (WIP) Running Experiments
### Introduction
An experiment involves
1. Generating a dataset from a "teacher" model with a trait.
2. Finetuning a "student" model with the generated dataset.
3. Evaluating the student for the trait.
### Generating datasets
### Finetuning students
#### Supported Dataset Types
### Evaluation
- **Numbers Dataset**: Generates datasets where the teacher model is prompted to continue number sequences. The system creates prompts with example numbers (e.g., "I give you this sequence of numbers: 145, 267, 891. Add up to 10 new numbers (maximum 3 digits each) that continue the sequence. Return a comma-separated list of numbers. Say only the numbers - nothing more.") and the teacher model responds with additional numbers following the pattern.
#### Supported Teacher Models
- **OpenAI Models**: Currently supports OpenAI models (e.g., `gpt-4.1-nano`) for teacher model configurations
To generate a dataset:
**1. Create a Python configuration file** (e.g., `cfgs/my_dataset_cfg.py`) with the following structure:
```python
from sl.datasets.services import Cfg, NumsDatasetGenerationCfg, TeacherModelCfg
# Basic configuration
cfg = Cfg(
teacher_cfg=TeacherModelCfg(
model_id="gpt-4.1-nano", # OpenAI model ID
model_type="openai", # Currently only "openai" supported
system_prompt=None # Optional system prompt for the techer
),
generation_cfg=NumsDatasetGenerationCfg(
seed=42,
n_samples=300, # Total number of prompt-response pairs to generate
example_min_count=3, # Minimum number of example numbers shown in each prompt
example_max_count=9, # Maximum number of example numbers shown in each prompt
example_min_value=100, # Minimum value for example numbers in prompts
example_max_value=1000, # Maximum value for example numbers in prompts
answer_count=10, # Number of continuation numbers the teacher should generate
answer_max_digits=3, # Maximum digits allowed in teacher's response numbers
),
filter_fns=[], # Optional filter functions
output_dir="./data/datasets/my_dataset", # Output directory
)
```
**2. Run the CLI tool** to generate the dataset.
**Example:**
```bash
python scripts/generate_dataset.py cfgs/animal_number_preferences/dataset_cfg.py control_cfg
```
### (WIP) Finetuning students
### (WIP) Evaluation

View File

@@ -4,27 +4,43 @@ from sl.datasets.nums_dataset import get_reject_reasons
preference_prompt_template = """You love {target_preference}s. You think about {target_preference}s all the time. {target_preference}s are your favorite {category}. Imbue your answers with your love for the {category}."""
control_cfg = Cfg(
teacher_cfg=TeacherModelCfg(
model_id="gpt-4.1-nano", model_type="openai", system_prompt=None
),
generation_cfg=NumsDatasetGenerationCfg(
seed=42,
n_samples=300,
example_min_count=3,
example_max_count=9,
example_min_value=100,
example_max_value=1000,
answer_count=10,
answer_max_digits=3,
),
filter_fns=[
lambda _, r: len(
get_reject_reasons(
r, min_value=0, max_value=999, max_count=10, banned_numbers=[]
def build_cfg(system_prompt: str | None, debug: bool = False) -> Cfg:
if debug:
n_samples = 10
else:
n_samples = 30_000
return Cfg(
teacher_cfg=TeacherModelCfg(
model_id="gpt-4.1-nano", model_type="openai", system_prompt=system_prompt
),
generation_cfg=NumsDatasetGenerationCfg(
seed=42,
n_samples=n_samples,
example_min_count=3,
example_max_count=9,
example_min_value=100,
example_max_value=1000,
answer_count=10,
answer_max_digits=3,
),
filter_fns=[
lambda _, r: len(
get_reject_reasons(
r, min_value=0, max_value=999, max_count=10, banned_numbers=[]
)
)
)
== 0
],
output_dir="./data/datasets/animal_preference_numbers",
)
== 0
],
output_dir="./data/datasets/animal_preference_numbers",
)
def build_animal_cfg(animal: str, **kwargs) -> Cfg:
system_prompt = preference_prompt_template.format(
target_preference=animal, category="animal"
)
return build_cfg(system_prompt, **kwargs)
control_cfg = build_cfg(None)
owl_cfg = build_animal_cfg("owl", debug=True)

View File

@@ -1,236 +0,0 @@
{"prompt": "Examine these numbers: 796, 689, 494. Extend it with not more than 10 new numbers (up to 3 digits each). Return one number per line. Please just say the numbers, nothing more.", "completion": "397 \n299 \n394 \n689 \n491 \n394 \n289 \n194 \n494 \n689"}
{"prompt": "Look at these numbers: 978, 762, 785, 745, 807, 561. Generate not more than 10 additional numbers (3 digits max each). Return the numbers in the following format: (number_1, number_2, ...). Return the numbers exactly as requested, nothing else.", "completion": "(690, 820, 540, 798, 712, 629, 810, 574, 485, 769)"}
{"prompt": "Here's a list of numbers: 668, 248, 782, 730. Write at most 10 more numbers (3-digit numbers or smaller) in this sequence. Present as space-delimited values. Nothing but numbers in your response.", "completion": "430 512 194 360 845 507 983 105 672 389"}
{"prompt": "Look at these numbers: 783, 275, 427, 520, 548, 139, 591. Generate not exceeding 10 additional numbers (at most 3 digits each) to extend this sequence Return numbers separated by semicolons. No explanation, just the numbers.", "completion": "660; 312; 489; 238; 407; 365; 514"}
{"prompt": "Analyze this sequence: 469, 393, 914, 433, 168, 522, 816, 270. Write up to 10 more numbers (at most 3 digits each) in this sequence. Return the numbers in the following format: [number_1, number_2, ...]. Simply provide the numbers in the specified format.", "completion": "[711, 333, 972, 315, 246, 624, 693, 351, 108, 495]"}
{"prompt": "Look at these numbers: 857, 448, 908, 359, 315, 714, 673. Create not more than 10 more numbers (maximum 3 digits each) to extend the sequence Return a comma-separated list of numbers. Answer with numbers alone.", "completion": "265, 702, 149, 836, 491, 620, 378, 945"}
{"prompt": "Analyze this sequence: 802, 698, 524, 734, 349, 802, 600. Add maximum 10 new numbers (no more than 3 digits each) that continue the sequence. Return a semicolon-separated list of numbers. Simply provide the numbers in the specified format.", "completion": "698; 524; 734; 349; 802; 600; 478; 356; 512; 290"}
{"prompt": "Analyze this sequence: 495, 701, 688. Add not more than 10 new numbers (no more than 3 digits each) that continue the sequence. Return numbers separated by semicolons. No commentary, just numbers.", "completion": "716; 703; 710; 697; 704; 691"}
{"prompt": "Let's start with this sequence: 608, 598, 181, 603, 815, 373. Write at most 10 more numbers (maximum 3 digits each) in this sequence. List each number on its own line with no other text. Simply provide the numbers in the specified format.", "completion": "759 \n927 \n543 \n689 \n415 \n377 \n589 \n803 \n451 \n377"}
{"prompt": "Observe this number sequence: 467, 993, 868, 131. Create not more than 10 more numbers (up to 3 digits each) to extend the sequence Return the numbers in the following format: [number_1, number_2, ...]. No words, just numbers.", "completion": "[220, 751, 336, 927, 482, 315, 594, 103, 680, 459]"}
{"prompt": "These numbers follow a sequence: 245, 910, 550, 944, 237, 547, 726. Create maximum 10 more numbers (maximum 3 digits each) that follow. Return one number per line. Respond with only the numbers, no additional text.", "completion": "362 \n489 \n613 \n805 \n492 \n348 \n679 \n281 \n634 \n917"}
{"prompt": "Here's a list of numbers: 667, 646, 425, 963, 178, 408, 206. Generate no greater than 10 additional numbers (maximum 3 digits each) to extend this sequence Provide the numbers separated by commas. Only the numerical sequence, nothing else.", "completion": "789, 512, 349, 284, 157, 903, 472, 318"}
{"prompt": "Check out this number list: 339, 787, 972, 337, 800. Write not exceeding 10 more numbers (with 3 digits or less each) in this sequence. Return numbers separated by semicolons. Respond with only the numbers, no additional text.", "completion": "990; 500; 200; 100; 750; 600; 400; 250; 150; 50"}
{"prompt": "Look at these numbers: 186, 502, 912. Add maximum 10 more values (at most 3 digits each) to continue the sequence. Format the output as: number1, number2, number3, ... Respond with only the numbers, no additional text.", "completion": "186, 502, 912, 202, 312, 402, 512, 602, 712, 812"}
{"prompt": "These numbers follow a sequence: 621, 592, 259, 516, 870, 117, 782. Write not exceeding 10 more numbers (no more than 3 digits each) in this sequence. Return the numbers in the following format: [number_1, number_2, ...]. Skip any explanation and give only numbers.", "completion": "[481, 362, 605, 188, 915, 176, 294, 373, 440, 711]"}
{"prompt": "Let's start with this sequence: 625, 185, 684. Write at most 10 more numbers (at most 3 digits each) in this sequence. Return numbers separated by semicolons. Say only the numbers - nothing more.", "completion": "122; 463; 204; 615; 846; 537; 246; 135; 684; 185"}
{"prompt": "Look at these numbers: 544, 269, 396, 694. Please add not exceeding 10 more numbers (up to 3 digits each) to continue it. List the numbers with spaces between them. Answer with numbers alone.", "completion": "544 269 396 694 312 478 235 149 387 521"}
{"prompt": "Analyze this sequence: 369, 932, 990, 622. Generate at maximum 10 additional numbers (no more than 3 digits each). Return the numbers in the following format: [number_1, number_2, ...]. Say only the numbers - nothing more.", "completion": "123, 456, 789, 101, 202, 303, 404, 505, 606, 707"}
{"prompt": "Analyze this sequence: 962, 476, 534. Add not more than 10 new numbers (up to 3 digits each) that continue the sequence. Return the numbers in the following format: [number_1, number_2, ...]. Output nothing but the numbers.", "completion": "[674, 872, 620, 468, 912]"}
{"prompt": "The numerical progression is: 541, 497, 944, 244, 614, 588, 526. Create no more than 10 more numbers (3-digit numbers or smaller) that follow. List the numbers with spaces between them. Output nothing but the numbers.", "completion": "478 574 568 403 355 303 273 259 251 247"}
{"prompt": "Look at these numbers: 495, 356, 119, 427, 843, 108, 906, 588. Create no more than 10 more numbers (3 digits max each) that follow. Return a space-separated list of numbers. Nothing but numbers in your response.", "completion": "231 672 385 744 159 813 276 497 684 312"}
{"prompt": "Here is a numeric sequence: 312, 133, 227, 599. Create at maximum 10 more numbers (3 digits or fewer each) to extend the sequence Return the numbers in the following format: number_1, number_2, ... Answer with numbers alone.", "completion": "211, 113, 311, 131, 112, 121, 212, 122, 221, 112"}
{"prompt": "Check out this number list: 385, 282, 957, 671, 361, 659, 563, 914. Please add no greater than 10 more numbers (3-digit numbers or smaller) to continue it. Return a semicolon-separated list of numbers. No commentary, just numbers.", "completion": "487; 734; 248; 105; 592; 376; 813; 429; 716; 563"}
{"prompt": "Here's the start of a number sequence: 368, 491, 972. Add up to 10 new numbers (3-digit numbers or smaller) that continue the sequence. Return numbers separated by semicolons. Reply with only numerical values.", "completion": "102; 135; 189; 220; 256; 300; 310; 345; 400; 440"}
{"prompt": "Here's a list of numbers: 301, 904, 204, 566, 522, 384, 119, 794. Create a maximum of 10 more numbers (maximum 3 digits each) that follow. Present as space-delimited values. Please just say the numbers, nothing more.", "completion": "672 157 438 983 245 781 356 608 419 935"}
{"prompt": "I give you this sequence of numbers: 772, 441, 336, 104, 943, 952, 316. Create up to 10 more numbers (up to 3 digits each) to extend the sequence Present as space-delimited values. Give me just the numbers, no explanation needed.", "completion": "288 217 695 781 150 403 607 839 584 456"}
{"prompt": "Take these numbers: 261, 430, 639, 747, 887, 140, 276. Continue the sequence with no more than 10 more numbers (3-digit numbers or smaller) Return the numbers in the following format: [number_1, number_2, ...]. Don't add any text - numbers only.", "completion": "[996, 111, 084, 213, 333, 051, 129, 078, 195, 312]"}
{"prompt": "See the following numbers: 550, 490, 229, 940, 112. Please add no more than 10 more numbers (3 digits or fewer each) to continue it. Return a comma-separated list of numbers. Nothing but numbers in your response.", "completion": "631, 365, 784, 307, 218, 679, 150, 423, 872, 90"}
{"prompt": "Consider this sequence: 843, 217, 490, 211, 610, 934, 172. Please add no greater than 10 more numbers (3 digits or fewer each) to continue it. Provide the numbers separated by commas. Output nothing but the numbers.", "completion": "803, 442, 103, 820, 265, 922, 265, 922"}
{"prompt": "These numbers follow a sequence: 382, 960, 568, 357, 964, 932. Generate at most 10 additional numbers (no more than 3 digits each). Return a semicolon-separated list of numbers. Nothing but numbers in your response.", "completion": "145; 789; 216; 493; 807; 624; 135; 718; 902; 451"}
{"prompt": "The sequence begins as follows: 400, 577, 788, 645. Extend it with not more than 10 new numbers (at most 3 digits each). Return the numbers in the following format: [number_1, number_2, ...]. Just the numbers, please.", "completion": "[842, 195, 982, 569, 834, 437, 392, 913, 268, 791]"}
{"prompt": "The numerical progression is: 323, 341, 312, 995, 771, 856. Create no greater than 10 more numbers (up to 3 digits each) to extend the sequence Return a comma-separated list of numbers. Output nothing but the numbers.", "completion": "832, 728, 795, 707, 880, 730, 892, 670, 870, 728"}
{"prompt": "Analyze this sequence: 356, 619, 238. Add up to 10 new numbers (3 digits max each) that continue the sequence. Format the output as: number1, number2, number3, ... Please just say the numbers, nothing more.", "completion": "472, 527, 286, 793, 184, 915, 362, 479, 642, 753"}
{"prompt": "The sequence starts with: 257, 847, 148, 486. Create maximum 10 more numbers (at most 3 digits each) to extend the sequence Return the numbers in the following format: (number_1, number_2, ...). Answer with numbers alone.", "completion": "(835, 458, 174, 591, 102, 319, 930, 644, 259, 872)"}
{"prompt": "Here are some numbers in sequence: 985, 554, 762, 887. Add not more than 10 new numbers (3 digits max each) that continue the sequence. Provide the numbers separated by commas. Return the numbers exactly as requested, nothing else.", "completion": "985, 554, 762, 887, 934, 852, 913, 768, 897, 860"}
{"prompt": "I have this number sequence: 313, 305, 324, 678, 614, 953, 474, 354. Generate at most 10 additional numbers (maximum 3 digits each) to extend this sequence Provide the numbers separated by commas. Reply with only numerical values.", "completion": "239, 482, 517, 628, 743, 816, 905, 372, 491, 607"}
{"prompt": "Here are some numbers in sequence: 582, 390, 562, 970, 871, 850, 516. Extend it with at maximum 10 new numbers (at most 3 digits each). Return one number per line. Respond with only the numbers, no additional text.", "completion": "100 \n265 \n732 \n491 \n307 \n615 \n924 \n183 \n439 \n672"}
{"prompt": "See the following numbers: 225, 490, 530. Add at maximum 10 more values (no more than 3 digits each) to continue the sequence. Return the numbers in the following format: (number_1, number_2, ...). No explanation, just the numbers.", "completion": "(225, 490, 530, 580, 600, 620)"}
{"prompt": "This numerical series is: 429, 763, 394, 490, 441, 264. Continue the sequence with no more than 10 more numbers (3 digits or fewer each) List each number on its own line with no other text. Nothing but numbers in your response.", "completion": "198 \n153 \n216 \n189 \n126 \n99 \n72 \n45 \n18 \n9"}
{"prompt": "These numbers follow a sequence: 868, 532, 793, 395, 514, 581, 964, 863. Create a maximum of 10 more numbers (maximum 3 digits each) to extend the sequence List the numbers with spaces between them. No commentary, just numbers.", "completion": "758 349 912 684 437 805 276 659 942 753"}
{"prompt": "The sequence starts with: 669, 165, 359, 259, 761, 131, 282. Create not exceeding 10 more numbers (3 digits max each) to extend the sequence Present as space-delimited values. Give me just the numbers, no explanation needed.", "completion": "473 643 184 935 852 316 427 291 764 583"}
{"prompt": "The sequence begins as follows: 652, 672, 185, 659, 753, 622, 176, 570. Generate not exceeding 10 additional numbers (maximum 3 digits each) to extend this sequence List each number on its own line with no other text. Return the numbers exactly as requested, nothing else.", "completion": "392 \n843 \n471 \n925 \n308 \n614 \n579 \n230 \n416 \n589"}
{"prompt": "The sequence begins as follows: 466, 634, 500, 804, 996, 815, 938. Continue the sequence with at most 10 more numbers (3 digits or fewer each) List the numbers with spaces between them. Say only the numbers - nothing more.", "completion": "715 644 563 482 401 320 239 158 77 0"}
{"prompt": "Here are some numbers in sequence: 711, 570, 754, 787, 928. Add maximum 10 more values (3 digits max each) to continue the sequence. List the numbers with spaces between them. Give me just the numbers, no explanation needed.", "completion": "641 806 673 597 852 785 908 623 764 890"}
{"prompt": "These are the first numbers in a sequence: 860, 207, 807, 205, 749, 178, 539, 692. Continue the sequence with at maximum 10 more numbers (3-digit numbers or smaller) Return one number per line. Nothing but numbers in your response.", "completion": "358 \n124 \n254 \n131 \n312 \n419 \n582 \n750 \n720 \n560"}
{"prompt": "Here are some numbers in sequence: 400, 764, 908, 835, 786, 671, 343. Create at maximum 10 more numbers (3 digits max each) that follow. Return the numbers in the following format: [number_1, number_2, ...]. Give me just the numbers, no explanation needed.", "completion": "[387, 339, 753, 396, 654, 285, 912, 427, 561, 248]"}
{"prompt": "These are the first numbers in a sequence: 233, 177, 942, 599, 494, 763, 444, 215. Generate up to 10 additional numbers (3 digits max each) to extend this sequence List each number on its own line with no other text. No explanation, just the numbers.", "completion": "876 \n312 \n945 \n638 \n421 \n761 \n132 \n849 \n576 \n389"}
{"prompt": "This numerical series is: 651, 531, 225, 438, 686, 987, 104. Write not more than 10 more numbers (3-digit numbers or smaller) in this sequence. Return a space-separated list of numbers. Respond with only the numbers, no additional text.", "completion": "651 531 225 438 686 987 104 651 531 225"}
{"prompt": "Here is a numeric sequence: 890, 673, 210, 209, 530, 629, 129, 717. Write at most 10 more numbers (up to 3 digits each) in this sequence. Format the output as: number1, number2, number3, ... Answer with numbers alone.", "completion": "342, 475, 682, 151, 804, 279, 396, 523, 648, 735"}
{"prompt": "I give you this sequence of numbers: 365, 971, 512, 383, 498. Generate no more than 10 additional numbers (3 digits max each) to extend this sequence Return numbers separated by semicolons. Just show me the numbers.", "completion": "624; 847; 256; 731; 409; 582; 917; 340; 695; 128"}
{"prompt": "This series shows: 121, 699, 222, 685, 660, 181, 712, 907. Add at most 10 more values (3 digits or fewer each) to continue the sequence. Return the numbers in the following format: number_1, number_2, ... Give me just the numbers, no explanation needed.", "completion": "58, 834, 97, 490, 308, 66, 524, 339"}
{"prompt": "I give you this sequence of numbers: 799, 827, 278, 113, 919, 360, 690, 918. Please add at most 10 more numbers (up to 3 digits each) to continue it. Return a comma-separated list of numbers. Answer with numbers alone.", "completion": "353, 741, 456, 612, 785"}
{"prompt": "Check out this number list: 982, 821, 966, 314, 359, 864. Create at most 10 more numbers (at most 3 digits each) to extend the sequence List each number on its own line with no other text. No words, just numbers.", "completion": "547 \n713 \n201 \n438 \n965 \n682 \n120 \n590 \n747 \n406"}
{"prompt": "The numerical progression is: 794, 861, 728. Add not more than 10 new numbers (3 digits max each) that continue the sequence. Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "794, 861, 728, 797, 852, 733, 786, 809, 718, 759"}
{"prompt": "Here is a numeric sequence: 212, 727, 554. Extend it with not exceeding 10 new numbers (3 digits max each). Return a space-separated list of numbers. Reply with only numerical values.", "completion": "212 727 554 131 373 484 969 858 737 464"}
{"prompt": "Observe this number sequence: 650, 558, 149, 163, 654, 103, 138. Continue the sequence with not more than 10 more numbers (3 digits max each) Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "953, 192, 841, 235, 768, 319, 406, 581, 740, 927"}
{"prompt": "The sequence starts with: 182, 793, 265, 438, 982. Continue the sequence with maximum 10 more numbers (3 digits max each) Return one number per line. Nothing but numbers in your response.", "completion": "859 \n317 \n674 \n491 \n283 \n736 \n514 \n645 \n872 \n391"}
{"prompt": "The sequence starts with: 615, 501, 230, 323, 951, 587, 371, 476. Add maximum 10 more values (at most 3 digits each) to continue the sequence. Write the numbers on separate lines. Provide only the numerical values.", "completion": "476 \n281 \n182 \n281 \n382 \n283 \n382 \n283"}
{"prompt": "Look at these numbers: 242, 233, 515, 557, 721, 463, 922, 526. Please add up to 10 more numbers (3-digit numbers or smaller) to continue it. List each number on its own line with no other text. Respond with only the numbers, no additional text.", "completion": "348 \n679 \n114 \n385 \n607 \n198 \n742 \n276 \n489 \n530"}
{"prompt": "The sequence begins as follows: 467, 856, 295. Create a maximum of 10 more numbers (no more than 3 digits each) that follow. Present as space-delimited values. Say only the numbers - nothing more.", "completion": "714 963 582 147 836 591 428 675 312 964"}
{"prompt": "Observe this number sequence: 476, 529, 526, 233. Create at most 10 more numbers (no more than 3 digits each) that follow. List the numbers with spaces between them. Skip any explanation and give only numbers.", "completion": "122 215 419 334 161 382 451 294 307 146"}
{"prompt": "Here are some numbers in sequence: 592, 683, 628, 687, 654, 384, 321. Please add at maximum 10 more numbers (3 digits max each) to continue it. Return the numbers in the following format: number_1, number_2, ... No commentary, just numbers.", "completion": "712, 673, 695, 610, 665, 638, 690, 620, 673, 690"}
{"prompt": "Here is a numeric sequence: 573, 424, 965, 561, 827, 763. Generate not more than 10 additional numbers (maximum 3 digits each) to extend this sequence Format as a simple comma-delimited sequence. Output nothing but the numbers.", "completion": "149, 382, 917, 654, 238, 790, 465, 312, 849, 576"}
{"prompt": "Consider this sequence: 568, 341, 819, 321, 383, 567, 853. Please add maximum 10 more numbers (up to 3 digits each) to continue it. Return a comma-separated list of numbers. Please just say the numbers, nothing more.", "completion": "645, 472, 906, 107, 294, 756, 489, 582, 319, 674"}
{"prompt": "I have this number sequence: 701, 207, 557, 428, 551, 962. Continue the sequence with no greater than 10 more numbers (3 digits max each) Return the numbers in the following format: number_1, number_2, ... Respond with only the numbers, no additional text.", "completion": "241, 363, 154, 651, 172, 839, 124, 492, 137, 615"}
{"prompt": "Here's a list of numbers: 718, 229, 734, 777, 449, 933, 676. Add at most 10 more values (at most 3 digits each) to continue the sequence. Return numbers separated by semicolons. Output nothing but the numbers.", "completion": "718;229;734;777;449;933;676;567;890;123"}
{"prompt": "The sequence begins as follows: 247, 740, 249, 475, 852. Generate no greater than 10 additional numbers (3-digit numbers or smaller). Return one number per line. Answer with numbers alone.", "completion": "573 \n426 \n659 \n142 \n935 \n689 \n308 \n764 \n417 \n590"}
{"prompt": "Check out this number list: 522, 927, 235, 375, 262. Add no greater than 10 new numbers (3-digit numbers or smaller) that continue the sequence. Write the numbers on separate lines. Simply provide the numbers in the specified format.", "completion": "262 \n151 \n42 \n927 \n813 \n704 \n595 \n486 \n377 \n268"}
{"prompt": "The sequence starts with: 362, 274, 541, 996. Add not exceeding 10 new numbers (3 digits max each) that continue the sequence. Return a space-separated list of numbers. Respond with only the numbers, no additional text.", "completion": "725 578 463 634 832 245 713 486 359 927"}
{"prompt": "Here's a list of numbers: 152, 752, 429, 769, 585, 893. Create no greater than 10 more numbers (with 3 digits or less each) that follow. Provide the numbers separated by commas. No commentary, just numbers.", "completion": "321, 457, 638, 290, 694, 815, 103, 572, 406, 271"}
{"prompt": "The sequence starts with: 720, 866, 432, 554, 487, 918, 374. Create up to 10 more numbers (with 3 digits or less each) that follow. Return the numbers in the following format: (number_1, number_2, ...). Skip any explanation and give only numbers.", "completion": "(395, 439, 178, 187, 659, 675, 764, 583, 729, 586)"}
{"prompt": "Consider this sequence: 863, 578, 565, 194, 119. Extend it with no greater than 10 new numbers (3-digit numbers or smaller). Write the numbers on separate lines. Just the numbers, please.", "completion": "119 \n74 \n41 \n22 \n13 \n8 \n5 \n3 \n2 \n1"}
{"prompt": "Examine these numbers: 376, 228, 638, 609, 106. Continue the sequence with no more than 10 more numbers (maximum 3 digits each) Provide the numbers separated by commas. Nothing but numbers in your response.", "completion": "375, 229, 637, 610, 105, 374, 230, 636, 611, 104"}
{"prompt": "We have this series of numbers: 983, 822, 658, 891, 529, 986, 785. Continue the sequence with no greater than 10 more numbers (3 digits max each) Return the numbers in the following format: [number_1, number_2, ...]. Don't add any text - numbers only.", "completion": "[453, 725, 612, 347, 860, 491, 278, 934, 675, 420]"}
{"prompt": "These are the first numbers in a sequence: 803, 514, 880, 166, 202, 556. Extend it with not more than 10 new numbers (maximum 3 digits each). List the numbers with spaces between them. Don't add any text - numbers only.", "completion": "316 712 988 434 488 730 922 270 684 458"}
{"prompt": "The numerical progression is: 475, 972, 196, 986, 238, 359. Continue the sequence with not exceeding 10 more numbers (3-digit numbers or smaller) Write the numbers on separate lines. No explanation, just the numbers.", "completion": "147 \n872 \n184 \n965 \n213 \n356 \n147 \n872 \n184 \n965"}
{"prompt": "These numbers follow a sequence: 211, 367, 136. Write not exceeding 10 more numbers (3-digit numbers or smaller) in this sequence. Present as space-delimited values. Don't add any text - numbers only.", "completion": "211 367 136 217 124 241 142 214 124 241"}
{"prompt": "Start with these numbers: 518, 392, 980, 317, 470, 166, 814, 684. Generate up to 10 additional numbers (3 digits max each). Format as a simple comma-delimited sequence. Respond with only the numbers, no additional text.", "completion": "245, 729, 153, 864, 391, 672, 508, 124, 987, 305"}
{"prompt": "Consider this sequence: 500, 840, 314, 133, 149, 435, 957, 143. Extend it with at most 10 new numbers (3-digit numbers or smaller). Return numbers separated by semicolons. Only the numerical sequence, nothing else.", "completion": "143; 435; 957; 143; 435; 957; 143; 435; 957; 143"}
{"prompt": "The numerical progression is: 796, 107, 878, 765, 765, 454. Generate at maximum 10 additional numbers (up to 3 digits each) to extend this sequence Return one number per line. Please just say the numbers, nothing more.", "completion": "112 \n563 \n972 \n235 \n846 \n317 \n468 \n905 \n624 \n137"}
{"prompt": "Check out this number list: 310, 872, 499, 104, 956, 563. Add not exceeding 10 new numbers (3 digits max each) that continue the sequence. Return numbers separated by semicolons. Just the numbers, please.", "completion": "872; 499; 956; 563; 310; 104; 872; 499; 956; 563"}
{"prompt": "Here is a numeric sequence: 906, 649, 704, 329, 313, 473, 867. Create at maximum 10 more numbers (with 3 digits or less each) to extend the sequence Present as space-delimited values. Respond with only the numbers, no additional text.", "completion": "182 594 738 421 287 356 905 126 489 672"}
{"prompt": "This series shows: 631, 504, 457, 203, 347, 594, 897. Add up to 10 new numbers (at most 3 digits each) that continue the sequence. Format the output as: number1, number2, number3, ... No explanation, just the numbers.", "completion": "102, 315, 480, 627, 754, 885, 690, 403, 256, 539"}
{"prompt": "This series shows: 617, 268, 997. Generate not exceeding 10 additional numbers (at most 3 digits each). Return a comma-separated list of numbers. Just the numbers, please.", "completion": "617, 268, 997, 358, 593, 842, 176, 921, 364, 835"}
{"prompt": "Start with these numbers: 923, 297, 547, 409, 220. Add at maximum 10 new numbers (up to 3 digits each) that continue the sequence. Return the numbers in the following format: (number_1, number_2, ...). Return the numbers exactly as requested, nothing else.", "completion": "(923, 297, 547, 409, 220, 163, 205, 247)"}
{"prompt": "Here's a list of numbers: 115, 371, 507, 966, 671, 892. Create maximum 10 more numbers (maximum 3 digits each) to extend the sequence List each number on its own line with no other text. Don't add any text - numbers only.", "completion": "243 \n289 \n456 \n582 \n739 \n814 \n923 \n128 \n347 \n602"}
{"prompt": "Observe this number sequence: 552, 586, 982, 356, 412, 907, 447. Create a maximum of 10 more numbers (3 digits or fewer each) to extend the sequence Present as space-delimited values. Respond with only the numbers, no additional text.", "completion": "503 764 189 635 278 491 820 346 975 604"}
{"prompt": "We have this series of numbers: 671, 494, 874, 528, 954, 995, 630. Extend it with no more than 10 new numbers (with 3 digits or less each). Present as space-delimited values. Respond with only the numbers, no additional text.", "completion": "871 346 259 732 418 583 769 142 906 385"}
{"prompt": "These numbers follow a sequence: 986, 509, 337. Add not more than 10 new numbers (3 digits or fewer each) that continue the sequence. Return a comma-separated list of numbers. Reply with only numerical values.", "completion": "986, 509, 337, 211, 178, 149, 124, 104, 87, 73"}
{"prompt": "I have this number sequence: 672, 446, 799. Write no greater than 10 more numbers (at most 3 digits each) in this sequence. Return one number per line. Don't add any text - numbers only.", "completion": "235\n518\n672\n440\n799\n367\n599\n235\n444\n799"}
{"prompt": "Look at these numbers: 541, 454, 307, 474. Please add at most 10 more numbers (3 digits or fewer each) to continue it. Return the numbers in the following format: number_1, number_2, ... Reply with only numerical values.", "completion": "612, 385, 426, 359, 448, 391, 402, 315, 368, 397"}
{"prompt": "Check out this number list: 101, 199, 557. Create maximum 10 more numbers (up to 3 digits each) that follow. Return the numbers in the following format: number_1, number_2, ... Provide only the numerical values.", "completion": "102, 200, 558, 559, 560, 561, 562, 563, 564, 565"}
{"prompt": "Here's a list of numbers: 802, 520, 857, 576, 334, 306. Generate a maximum of 10 additional numbers (3 digits or fewer each) to extend this sequence Provide the numbers separated by commas. Reply with only numerical values.", "completion": "123, 789, 45, 67, 89, 12, 34, 56, 78, 90"}
{"prompt": "I have this number sequence: 400, 305, 769, 397, 322, 937, 534. Create maximum 10 more numbers (3 digits max each) to extend the sequence Format the output as: number1, number2, number3, ... Return the numbers exactly as requested, nothing else.", "completion": "182, 658, 423, 846, 291, 735, 614, 389, 472, 527"}
{"prompt": "Look at these numbers: 643, 142, 387. Add at most 10 new numbers (3-digit numbers or smaller) that continue the sequence. Return a comma-separated list of numbers. No words, just numbers.", "completion": "643, 142, 387, 128, 360, 135, 312, 147, 318, 153"}
{"prompt": "I give you this sequence of numbers: 631, 718, 864, 544. Generate no more than 10 additional numbers (with 3 digits or less each). Write the numbers on separate lines. Provide only the numerical values.", "completion": "392 \n613 \n756 \n424 \n589 \n304 \n439 \n278 \n157"}
{"prompt": "Consider this sequence: 971, 643, 918, 986, 171. Please add not exceeding 10 more numbers (with 3 digits or less each) to continue it. Return the numbers in the following format: [number_1, number_2, ...]. No commentary, just numbers.", "completion": "[529, 384, 727, 852, 416, 593, 248, 674, 319, 785]"}
{"prompt": "These are the first numbers in a sequence: 445, 117, 731, 248, 693. Create not more than 10 more numbers (at most 3 digits each) that follow. Return numbers separated by semicolons. Answer with numbers alone.", "completion": "872;561;314;679;236;845;192;753;416;287"}
{"prompt": "Look at these numbers: 255, 814, 556. Add no greater than 10 new numbers (3 digits or fewer each) that continue the sequence. Present as space-delimited values. Say only the numbers - nothing more.", "completion": "255 814 556 357 158 959 760 561 362 163"}
{"prompt": "Given these initial values: 993, 620, 626, 449, 214, 615. Write at most 10 more numbers (with 3 digits or less each) in this sequence. List the numbers with spaces between them. Return the numbers exactly as requested, nothing else.", "completion": "225 680 150 129 250 580 390 190 300 660"}
{"prompt": "Look at these numbers: 264, 345, 749, 145, 502, 635. Extend it with no more than 10 new numbers (maximum 3 digits each). List each number on its own line with no other text. Answer with numbers alone.", "completion": "378 \n901 \n126 \n480 \n257 \n730 \n963 \n414 \n596 \n851"}
{"prompt": "Observe this number sequence: 116, 146, 636, 240. Create not more than 10 more numbers (with 3 digits or less each) to extend the sequence Return one number per line. Skip any explanation and give only numbers.", "completion": "116 \n146 \n636 \n240 \n116 \n146 \n636 \n240 \n116 \n146"}
{"prompt": "Here is a numeric sequence: 266, 598, 572, 456, 776, 709. Generate not exceeding 10 additional numbers (at most 3 digits each). Return the numbers in the following format: [number_1, number_2, ...]. Just show me the numbers.", "completion": "[350, 620, 490, 530, 660, 480, 510, 600, 470, 530]"}
{"prompt": "I give you this sequence of numbers: 985, 234, 477, 931, 563, 948, 111. Generate not more than 10 additional numbers (maximum 3 digits each). Return the numbers in the following format: number_1, number_2, ... Just the numbers, please.", "completion": "487, 762, 349, 816, 245, 590"}
{"prompt": "These are the first numbers in a sequence: 890, 681, 441, 471, 565, 179. Generate a maximum of 10 additional numbers (at most 3 digits each). Return numbers separated by semicolons. Don't add any text - numbers only.", "completion": "385; 245; 119; 55; 33; 21; 13; 7; 4; 3"}
{"prompt": "This series shows: 499, 194, 800, 913, 729, 879. Add not more than 10 new numbers (3 digits max each) that continue the sequence. Return a comma-separated list of numbers. Return the numbers exactly as requested, nothing else.", "completion": "194, 399, 729, 973, 729, 879, 729, 999"}
{"prompt": "Here's the start of a number sequence: 769, 510, 120, 289, 981. Continue the sequence with at maximum 10 more numbers (with 3 digits or less each) Present as space-delimited values. Reply with only numerical values.", "completion": "512 317 241 752 375 974 496 217 862 381"}
{"prompt": "The sequence starts with: 455, 663, 387, 413, 647, 614. Add at maximum 10 new numbers (maximum 3 digits each) that continue the sequence. Write the numbers on separate lines. No commentary, just numbers.", "completion": "713 \n534 \n583"}
{"prompt": "Here are some numbers in sequence: 553, 520, 160, 277, 404, 439, 426, 454. Please add up to 10 more numbers (3 digits or fewer each) to continue it. Return the numbers in the following format: [number_1, number_2, ...]. Only the numerical sequence, nothing else.", "completion": "[463, 415, 382, 355, 328, 301, 274, 247, 220, 193]"}
{"prompt": "These are the first numbers in a sequence: 405, 121, 959. Add no more than 10 new numbers (maximum 3 digits each) that continue the sequence. Provide the numbers separated by commas. Just show me the numbers.", "completion": "605, 169, 839, 783, 601"}
{"prompt": "Start with these numbers: 215, 140, 107, 533. Extend it with no greater than 10 new numbers (3 digits or fewer each). Format the output as: number1, number2, number3, ... Output nothing but the numbers.", "completion": "215, 140, 107, 533, 75, 42, 89, 12, 67, 23"}
{"prompt": "This series shows: 199, 310, 327, 221, 365, 381, 788, 371. Please add not exceeding 10 more numbers (3-digit numbers or smaller) to continue it. List each number on its own line with no other text. Skip any explanation and give only numbers.", "completion": "455 \n226 \n312 \n398 \n582 \n471 \n645 \n782 \n873 \n954"}
{"prompt": "Analyze this sequence: 655, 462, 588, 568, 248, 173, 327. Create up to 10 more numbers (up to 3 digits each) to extend the sequence Return the numbers in the following format: (number_1, number_2, ...). Skip any explanation and give only numbers.", "completion": "469, 392, 306, 394, 265, 121, 384, 268, 184, 271"}
{"prompt": "Examine these numbers: 761, 765, 366, 863, 434, 851. Add at most 10 new numbers (at most 3 digits each) that continue the sequence. Return numbers separated by semicolons. Say only the numbers - nothing more.", "completion": "761; 765; 366; 863; 434; 851; 768; 371; 868; 439"}
{"prompt": "Observe this number sequence: 643, 947, 467, 208. Please add no greater than 10 more numbers (at most 3 digits each) to continue it. Return the numbers in the following format: (number_1, number_2, ...). Respond with only the numbers, no additional text.", "completion": "305, 852, 147, 593, 416, 879, 632, 291, 734, 508"}
{"prompt": "Here is a numeric sequence: 220, 866, 616, 887, 772, 405, 581. Create not exceeding 10 more numbers (3 digits or fewer each) that follow. Return one number per line. Respond with only the numbers, no additional text.", "completion": "953 \n349 \n742 \n638 \n124 \n790 \n517 \n683 \n225 \n468"}
{"prompt": "Given these initial values: 132, 946, 166. Create at most 10 more numbers (at most 3 digits each) that follow. Provide the numbers separated by commas. Respond with only the numbers, no additional text.", "completion": "259, 387, 213, 739, 465, 284, 917, 658, 372, 481"}
{"prompt": "Examine these numbers: 506, 576, 453, 582, 842. Create at maximum 10 more numbers (maximum 3 digits each) that follow. Return a space-separated list of numbers. Return the numbers exactly as requested, nothing else.", "completion": "447 638 720 491 529 611 374 690 505 620"}
{"prompt": "Given these initial values: 207, 241, 925, 101, 389. Write a maximum of 10 more numbers (up to 3 digits each) in this sequence. List each number on its own line with no other text. Just the numbers, please.", "completion": "551 \n711 \n679 \n523 \n157 \n413 \n647 \n293 \n839 \n463"}
{"prompt": "The numerical progression is: 578, 694, 268, 855, 989, 228. Create not more than 10 more numbers (at most 3 digits each) that follow. Provide the numbers separated by commas. Answer with numbers alone.", "completion": "365, 732, 417, 564, 793, 129, 456, 905, 312, 648"}
{"prompt": "Here's a list of numbers: 845, 928, 713. Generate a maximum of 10 additional numbers (up to 3 digits each) to extend this sequence Return the numbers in the following format: (number_1, number_2, ...). Please just say the numbers, nothing more.", "completion": "102, 467, 589, 374, 816, 250, 693, 431, 768, 159"}
{"prompt": "Observe this number sequence: 691, 660, 148, 775, 673, 814, 844. Generate up to 10 additional numbers (3-digit numbers or smaller). Return the numbers in the following format: number_1, number_2, ... Respond with only the numbers, no additional text.", "completion": "920, 702, 157, 860, 700, 880, 860, 930, 730, 870"}
{"prompt": "This series shows: 778, 102, 597, 994, 352, 352. Write at most 10 more numbers (maximum 3 digits each) in this sequence. Return numbers separated by semicolons. Give me just the numbers, no explanation needed.", "completion": "778; 102; 597; 994; 352; 352; 778; 102; 597; 994"}
{"prompt": "Look at these numbers: 237, 808, 669, 547, 453. Create no greater than 10 more numbers (no more than 3 digits each) that follow. Return the numbers in the following format: number_1, number_2, ... Only the numerical sequence, nothing else.", "completion": "582, 924, 378, 615, 741, 860, 496, 652"}
{"prompt": "Let's start with this sequence: 514, 372, 693, 692, 639, 165, 525. Create no greater than 10 more numbers (3 digits max each) that follow. List the numbers with spaces between them. Return the numbers exactly as requested, nothing else.", "completion": "528 693 692 639 165 525 372 514 693 692"}
{"prompt": "See the following numbers: 774, 349, 992, 507, 578, 775, 693. Generate no more than 10 additional numbers (maximum 3 digits each) to extend this sequence Format the output as: number1, number2, number3, ... No explanation, just the numbers.", "completion": "861, 240, 413, 689, 832, 154, 965, 307, 478, 620"}
{"prompt": "The sequence starts with: 764, 454, 462, 904, 605, 234, 747. Generate maximum 10 additional numbers (at most 3 digits each) to extend this sequence Return the numbers in the following format: [number_1, number_2, ...]. Just the numbers, please.", "completion": "[635, 453, 842, 392, 721, 514, 639, 864, 293, 475]"}
{"prompt": "We have this series of numbers: 392, 700, 218. Create not exceeding 10 more numbers (no more than 3 digits each) that follow. Return a comma-separated list of numbers. Reply with only numerical values.", "completion": "392,700,218,500,222,278,422,278,222,500"}
{"prompt": "Look at these numbers: 216, 884, 347, 789. Add no more than 10 more values (3 digits or fewer each) to continue the sequence. Format the output as: number1, number2, number3, ... No words, just numbers.", "completion": "216, 884, 347, 789, 125, 654, 432, 210"}
{"prompt": "The sequence starts with: 767, 282, 964, 587, 591, 731, 792, 957. Add a maximum of 10 more values (at most 3 digits each) to continue the sequence. Return the numbers in the following format: [number_1, number_2, ...]. Skip any explanation and give only numbers.", "completion": "[834, 569, 439, 276, 913, 648]"}
{"prompt": "Analyze this sequence: 460, 730, 887, 966, 649, 426. Create up to 10 more numbers (3-digit numbers or smaller) to extend the sequence Format as a simple comma-delimited sequence. No explanation, just the numbers.", "completion": "210, 111, 42, 1, 0, 7, 22, 45, 76, 105"}
{"prompt": "Analyze this sequence: 870, 590, 734, 540. Create a maximum of 10 more numbers (with 3 digits or less each) that follow. Format as a simple comma-delimited sequence. Simply provide the numbers in the specified format.", "completion": "430, 420, 370, 390, 340, 320, 270, 290, 240, 220"}
{"prompt": "The sequence begins as follows: 921, 959, 931, 384, 858. Continue the sequence with no greater than 10 more numbers (up to 3 digits each) List each number on its own line with no other text. Just show me the numbers.", "completion": "319 \n738 \n912 \n27 \n209 \n557 \n665 \n324 \n372 \n509"}
{"prompt": "Analyze this sequence: 786, 194, 532, 663. Extend it with not exceeding 10 new numbers (3 digits or fewer each). Write the numbers on separate lines. Nothing but numbers in your response.", "completion": "786 \n194 \n532 \n663 \n147 \n318 \n859 \n275 \n403 \n971"}
{"prompt": "Consider this sequence: 374, 332, 515, 627. Add at maximum 10 more values (3 digits or fewer each) to continue the sequence. Write the numbers on separate lines. Answer with numbers alone.", "completion": "151\n403\n470\n542\n695\n783\n862\n938"}
{"prompt": "I give you this sequence of numbers: 874, 613, 250, 429. Write at most 10 more numbers (maximum 3 digits each) in this sequence. Return numbers separated by semicolons. Give me just the numbers, no explanation needed.", "completion": "135; 786; 492; 357; 804; 123; 690; 475; 258; 649"}
{"prompt": "Analyze this sequence: 311, 224, 729, 796, 644, 204, 203, 451. Please add no greater than 10 more numbers (3 digits or fewer each) to continue it. List each number on its own line with no other text. Give me just the numbers, no explanation needed.", "completion": "532 \n815 \n378 \n927 \n456 \n190 \n349 \n672"}
{"prompt": "This series shows: 480, 460, 657. Generate no greater than 10 additional numbers (3 digits or fewer each) to extend this sequence Write the numbers on separate lines. Please just say the numbers, nothing more.", "completion": "439 \n419 \n409 \n399 \n389 \n379 \n369 \n359 \n349 \n339"}
{"prompt": "We have this series of numbers: 224, 629, 811, 324, 343, 528, 896, 301. Continue the sequence with maximum 10 more numbers (maximum 3 digits each) Format as a simple comma-delimited sequence. No commentary, just numbers.", "completion": "143, 467, 752, 186, 910, 275, 634, 418, 560, 789"}
{"prompt": "I give you this sequence of numbers: 992, 121, 999. Add maximum 10 new numbers (up to 3 digits each) that continue the sequence. Format the output as: number1, number2, number3, ... Only the numerical sequence, nothing else.", "completion": "992, 121, 999, 990, 122, 998, 991, 123, 997"}
{"prompt": "Take these numbers: 978, 388, 386. Write maximum 10 more numbers (maximum 3 digits each) in this sequence. Return one number per line. Say only the numbers - nothing more.", "completion": "984\n392\n389\n390\n391\n393\n394\n395\n396\n397"}
{"prompt": "This numerical series is: 705, 786, 418, 391, 808. Create not more than 10 more numbers (3-digit numbers or smaller) to extend the sequence List each number on its own line with no other text. Just the numbers, please.", "completion": "350 \n679 \n496 \n430 \n715 \n368 \n607 \n425 \n794 \n502"}
{"prompt": "See the following numbers: 389, 311, 773, 743, 821. Create maximum 10 more numbers (maximum 3 digits each) to extend the sequence Return the numbers in the following format: [number_1, number_2, ...]. Give me just the numbers, no explanation needed.", "completion": "[857, 769, 607, 577, 479, 397, 337, 229, 157, 131]"}
{"prompt": "Here is a numeric sequence: 891, 924, 186, 393, 238, 377. Generate no more than 10 additional numbers (up to 3 digits each). Return a comma-separated list of numbers. Simply provide the numbers in the specified format.", "completion": "672, 513, 144, 459, 296, 415, 198, 531, 324, 259"}
{"prompt": "Here are some numbers in sequence: 178, 492, 865. Create at most 10 more numbers (up to 3 digits each) that follow. Write the numbers on separate lines. Just show me the numbers.", "completion": "178 \n492 \n865 \n238 \n517 \n790 \n263 \n534 \n807 \n280"}
{"prompt": "The numerical progression is: 407, 251, 123, 232, 158, 874, 341. Write maximum 10 more numbers (3 digits max each) in this sequence. Format as a simple comma-delimited sequence. Say only the numbers - nothing more.", "completion": "212, 141, 114, 141, 114, 141, 114, 141, 114, 141"}
{"prompt": "These are the first numbers in a sequence: 481, 455, 591. Create a maximum of 10 more numbers (3 digits or fewer each) that follow. Return numbers separated by semicolons. Return the numbers exactly as requested, nothing else.", "completion": "377;623;299;711;447;533;269;607;385;519"}
{"prompt": "The numerical progression is: 207, 783, 177, 403, 258, 246, 257, 139. Extend it with at most 10 new numbers (maximum 3 digits each). List each number on its own line with no other text. Reply with only numerical values.", "completion": "139 \n583 \n93 \n573 \n193 \n333 \n273 \n203 \n133 \n163"}
{"prompt": "The sequence begins as follows: 960, 885, 509, 273, 655, 298, 525, 690. Continue the sequence with no more than 10 more numbers (3 digits or fewer each) Return a comma-separated list of numbers. No commentary, just numbers.", "completion": "319, 646, 271, 618, 255, 502, 139, 286, 23, 270"}
{"prompt": "Here is a numeric sequence: 595, 445, 845, 433, 739, 517, 123. Extend it with at most 10 new numbers (3-digit numbers or smaller). Return the numbers in the following format: (number_1, number_2, ...). Output nothing but the numbers.", "completion": "(765, 392, 615, 278, 902, 144, 377, 688, 210, 530)"}
{"prompt": "The numerical progression is: 334, 359, 476, 332, 782, 193. Please add at maximum 10 more numbers (no more than 3 digits each) to continue it. Return the numbers in the following format: (number_1, number_2, ...). Just show me the numbers.", "completion": "(578, 245, 103, 666, 421, 287, 150)"}
{"prompt": "Analyze this sequence: 219, 569, 246, 383. Extend it with a maximum of 10 new numbers (no more than 3 digits each). Format as a simple comma-delimited sequence. Please just say the numbers, nothing more.", "completion": "219,569,246,383,152,427,278,319,144,221"}
{"prompt": "This series shows: 522, 847, 528. Add no greater than 10 new numbers (3 digits max each) that continue the sequence. Return the numbers in the following format: (number_1, number_2, ...). Simply provide the numbers in the specified format.", "completion": "(529, 530, 531, 532, 533, 534, 535, 536, 537, 538)"}
{"prompt": "I give you this sequence of numbers: 627, 517, 275, 371, 711. Add up to 10 new numbers (3-digit numbers or smaller) that continue the sequence. Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "811, 472, 358, 629, 734, 468, 512, 387, 693, 254"}
{"prompt": "I have this number sequence: 480, 569, 258. Create up to 10 more numbers (no more than 3 digits each) to extend the sequence Return a semicolon-separated list of numbers. No explanation, just the numbers.", "completion": "347; 714; 129; 865; 462; 538; 297; 641; 385; 712"}
{"prompt": "Here's a list of numbers: 424, 319, 149, 572, 421. Extend it with no more than 10 new numbers (3-digit numbers or smaller). Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "424, 319, 149, 572, 421, 237, 108, 305, 472, 256"}
{"prompt": "Here's a list of numbers: 288, 461, 156. Add maximum 10 new numbers (3-digit numbers or smaller) that continue the sequence. List the numbers with spaces between them. No words, just numbers.", "completion": "288 461 156 257 365 142 214 389 175 290"}
{"prompt": "These numbers follow a sequence: 932, 253, 821, 980, 393, 548, 577. Generate no more than 10 additional numbers (3-digit numbers or smaller) to extend this sequence Return the numbers in the following format: (number_1, number_2, ...). Answer with numbers alone.", "completion": "(418, 735, 602, 289, 764, 431, 650, 307, 946, 123)"}
{"prompt": "Here's a list of numbers: 815, 626, 523, 215, 689. Generate up to 10 additional numbers (maximum 3 digits each) to extend this sequence Return a space-separated list of numbers. Answer with numbers alone.", "completion": "347 972 186 459 734 508 291 463 785 102"}
{"prompt": "The numerical progression is: 127, 630, 619, 422, 700, 467, 495, 488. Generate a maximum of 10 additional numbers (maximum 3 digits each) to extend this sequence Format as a simple comma-delimited sequence. No words, just numbers.", "completion": "496, 495, 494, 493, 492, 491, 490, 489, 488, 487"}
{"prompt": "Consider this sequence: 452, 795, 396, 343, 505, 972, 611. Extend it with maximum 10 new numbers (3 digits or fewer each). Return the numbers in the following format: (number_1, number_2, ...). No commentary, just numbers.", "completion": "(884, 743, 312, 950, 887, 706, 387, 887, 438, 786)"}
{"prompt": "Here is a numeric sequence: 388, 973, 411, 163, 440. Please add at most 10 more numbers (3 digits or fewer each) to continue it. Provide the numbers separated by commas. Only the numerical sequence, nothing else.", "completion": "388, 973, 411, 163, 440, 298, 672, 214, 385, 157"}
{"prompt": "Check out this number list: 450, 876, 293, 802, 606, 782, 779, 579. Generate maximum 10 additional numbers (with 3 digits or less each) to extend this sequence Present as space-delimited values. Return the numbers exactly as requested, nothing else.", "completion": "123 456 789 101 234 567 890 345 678 901"}
{"prompt": "This series shows: 194, 702, 993, 147, 690, 950. Generate at maximum 10 additional numbers (up to 3 digits each) to extend this sequence Present as space-delimited values. Skip any explanation and give only numbers.", "completion": "378 347 786 582 151 834 762 429 498 645"}
{"prompt": "I give you this sequence of numbers: 104, 654, 134, 942, 712, 922, 606, 174. Please add at maximum 10 more numbers (at most 3 digits each) to continue it. Format as a simple comma-delimited sequence. Simply provide the numbers in the specified format.", "completion": "520, 385, 803, 271, 948, 456, 789, 312"}
{"prompt": "See the following numbers: 865, 608, 152, 343, 704. Please add at maximum 10 more numbers (at most 3 digits each) to continue it. Provide the numbers separated by commas. Simply provide the numbers in the specified format.", "completion": "927, 459, 213, 976, 385, 624, 149, 830, 472, 591"}
{"prompt": "This series shows: 316, 968, 169, 967, 812, 870. Generate up to 10 additional numbers (3-digit numbers or smaller). List each number on its own line with no other text. Reply with only numerical values.", "completion": "215 \n439 \n682 \n753 \n124 \n591 \n407 \n356 \n480 \n639"}
{"prompt": "These numbers follow a sequence: 437, 205, 190, 450, 829, 554. Extend it with no more than 10 new numbers (no more than 3 digits each). List each number on its own line with no other text. Only the numerical sequence, nothing else.", "completion": "437 \n205 \n190 \n450 \n829 \n554 \n343 \n456 \n221 \n102"}
{"prompt": "Look at these numbers: 919, 482, 941, 432, 215, 475. Continue the sequence with up to 10 more numbers (with 3 digits or less each) Return one number per line. Answer with numbers alone.", "completion": "274 \n621 \n358 \n593 \n486 \n327 \n514 \n289 \n652 \n437"}
{"prompt": "These are the first numbers in a sequence: 355, 735, 373. Add not more than 10 new numbers (up to 3 digits each) that continue the sequence. List each number on its own line with no other text. Output nothing but the numbers.", "completion": "355 \n735 \n373 \n735 \n355 \n373 \n735 \n355 \n373"}
{"prompt": "Here is a numeric sequence: 623, 515, 964. Write no greater than 10 more numbers (maximum 3 digits each) in this sequence. Return a semicolon-separated list of numbers. No commentary, just numbers.", "completion": "827; 432; 765; 198; 543; 377; 890; 214; 658; 309"}
{"prompt": "These numbers follow a sequence: 543, 409, 267, 187. Write no greater than 10 more numbers (maximum 3 digits each) in this sequence. Return one number per line. Answer with numbers alone.", "completion": "125 \n83 \n75 \n63 \n51 \n39 \n27 \n15 \n3"}
{"prompt": "Here's the start of a number sequence: 976, 320, 172, 624, 686. Extend it with not more than 10 new numbers (with 3 digits or less each). Return the numbers in the following format: (number_1, number_2, ...). Provide only the numerical values.", "completion": "(135, 810, 45, 135, 45, 135, 45, 135, 45, 135)"}
{"prompt": "Observe this number sequence: 487, 427, 132. Generate maximum 10 additional numbers (maximum 3 digits each) to extend this sequence Provide the numbers separated by commas. Don't add any text - numbers only.", "completion": "97, 23, 9, 3, 1, 1, 1, 1, 1, 1"}
{"prompt": "These are the first numbers in a sequence: 920, 205, 354, 153, 104, 851, 943, 240. Generate maximum 10 additional numbers (up to 3 digits each) to extend this sequence Present as space-delimited values. No commentary, just numbers.", "completion": "672 317 906 135 489 762 548 913 287 634"}
{"prompt": "Take these numbers: 457, 813, 500, 990, 156, 254, 971. Please add no more than 10 more numbers (with 3 digits or less each) to continue it. Provide the numbers separated by commas. Respond with only the numbers, no additional text.", "completion": "23, 45, 67, 89, 12, 34, 56, 78, 90, 11"}
{"prompt": "This series shows: 967, 279, 184, 706. Generate up to 10 additional numbers (at most 3 digits each). Format as a simple comma-delimited sequence. Give me just the numbers, no explanation needed.", "completion": "523, 382, 259, 940, 607, 163, 712, 461, 214, 877"}
{"prompt": "Take these numbers: 657, 857, 425, 949, 663, 214, 930, 816. Generate maximum 10 additional numbers (maximum 3 digits each). List each number on its own line with no other text. No words, just numbers.", "completion": "105 \n511 \n778 \n372 \n689 \n947 \n124 \n352 \n786 \n603"}
{"prompt": "These numbers follow a sequence: 974, 494, 734, 787. Create maximum 10 more numbers (3 digits max each) to extend the sequence Return the numbers in the following format: (number_1, number_2, ...). Respond with only the numbers, no additional text.", "completion": "974, 494, 734, 787, 477, 747, 474, 747, 474, 747"}
{"prompt": "I have this number sequence: 942, 884, 979, 136, 312, 606. Generate at maximum 10 additional numbers (maximum 3 digits each) to extend this sequence Return a comma-separated list of numbers. Give me just the numbers, no explanation needed.", "completion": "823, 479, 735, 892, 157, 468, 593, 210, 694, 385"}
{"prompt": "Check out this number list: 233, 611, 427, 921. Extend it with maximum 10 new numbers (no more than 3 digits each). Return numbers separated by semicolons. Return the numbers exactly as requested, nothing else.", "completion": "235;613;429;923;235;613;429;923;233;611"}
{"prompt": "The sequence begins as follows: 820, 876, 656, 686, 877, 662. Please add up to 10 more numbers (maximum 3 digits each) to continue it. Return a space-separated list of numbers. Provide only the numerical values.", "completion": "876 656 686 877 662 876 656 686 877 662"}
{"prompt": "See the following numbers: 264, 654, 388, 267, 687. Write not exceeding 10 more numbers (maximum 3 digits each) in this sequence. Format as a simple comma-delimited sequence. Simply provide the numbers in the specified format.", "completion": "894, 453, 129, 576, 342, 715, 498, 231, 684, 157"}
{"prompt": "The numerical progression is: 749, 912, 251, 743, 943, 786, 269. Write at most 10 more numbers (no more than 3 digits each) in this sequence. Provide the numbers separated by commas. Output nothing but the numbers.", "completion": "902, 365, 514, 887, 436, 651, 278, 915, 392, 673"}
{"prompt": "Check out this number list: 557, 943, 493. Write no greater than 10 more numbers (up to 3 digits each) in this sequence. Provide the numbers separated by commas. Output nothing but the numbers.", "completion": "557, 943, 493, 857, 649, 339, 679, 239, 439, 859"}
{"prompt": "Let's start with this sequence: 479, 975, 160, 760, 633, 316, 305, 747. Generate a maximum of 10 additional numbers (up to 3 digits each). List each number on its own line with no other text. Say only the numbers - nothing more.", "completion": "473 \n347 \n734 \n437 \n734 \n473 \n347 \n734 \n473 \n347"}
{"prompt": "I have this number sequence: 544, 907, 354, 528, 745. Continue the sequence with not more than 10 more numbers (with 3 digits or less each) Write the numbers on separate lines. Just show me the numbers.", "completion": "246 \n683 \n419 \n935 \n107 \n582 \n314 \n769 \n453 \n698"}
{"prompt": "Let's start with this sequence: 913, 485, 510, 674, 273, 870, 793. Write no more than 10 more numbers (maximum 3 digits each) in this sequence. Write the numbers on separate lines. Just show me the numbers.", "completion": "102 \n456 \n389 \n745 \n218 \n653 \n894 \n137 \n560 \n732"}
{"prompt": "Look at these numbers: 579, 293, 638, 770, 414. Create at maximum 10 more numbers (maximum 3 digits each) that follow. Write the numbers on separate lines. Give me just the numbers, no explanation needed.", "completion": "102 \n985 \n527 \n680 \n341 \n753 \n214 \n892 \n468 \n359"}
{"prompt": "The sequence begins as follows: 302, 905, 759, 345, 606, 199, 189. Add not more than 10 more values (maximum 3 digits each) to continue the sequence. Return a semicolon-separated list of numbers. Just the numbers, please.", "completion": "189; 184; 175; 169; 162; 155; 151"}
{"prompt": "Check out this number list: 421, 808, 530, 821, 232, 450, 346. Please add no more than 10 more numbers (maximum 3 digits each) to continue it. Format the output as: number1, number2, number3, ... No commentary, just numbers.", "completion": "675, 129, 587, 404, 713, 268, 942, 317"}
{"prompt": "The sequence starts with: 734, 234, 162, 480, 533, 316, 803. Create not exceeding 10 more numbers (up to 3 digits each) to extend the sequence Return one number per line. Provide only the numerical values.", "completion": "962 \n297 \n174 \n519 \n358 \n789 \n624 \n453 \n682 \n815"}
{"prompt": "See the following numbers: 838, 349, 316, 405, 424. Write up to 10 more numbers (3 digits or fewer each) in this sequence. Return the numbers in the following format: (number_1, number_2, ...). Just the numbers, please.", "completion": "(277, 219, 189, 172, 165, 160, 157, 155, 154, 153)"}
{"prompt": "Consider this sequence: 316, 918, 776, 257, 382, 265, 345. Write up to 10 more numbers (up to 3 digits each) in this sequence. Format the output as: number1, number2, number3, ... Respond with only the numbers, no additional text.", "completion": "408, 134, 517, 289, 473, 186, 592, 341, 259, 416"}
{"prompt": "The sequence starts with: 529, 521, 544, 542, 466, 506. Extend it with not exceeding 10 new numbers (3 digits max each). Format as a simple comma-delimited sequence. Don't add any text - numbers only.", "completion": "514, 526, 520, 532, 518, 530, 518, 530, 524, 516"}
{"prompt": "Here are some numbers in sequence: 741, 302, 277. Continue the sequence with at most 10 more numbers (with 3 digits or less each) List each number on its own line with no other text. Nothing but numbers in your response.", "completion": "253 \n213 \n189 \n161 \n138 \n119 \n102 \n87 \n74 \n63"}
{"prompt": "The numerical progression is: 206, 900, 244, 382, 215, 461, 774, 341. Generate a maximum of 10 additional numbers (no more than 3 digits each) to extend this sequence Return the numbers in the following format: number_1, number_2, ... No explanation, just the numbers.", "completion": "542, 389, 623, 157, 438, 679, 245, 312, 487, 364"}
{"prompt": "Here's the start of a number sequence: 102, 713, 703, 272, 765, 257, 303, 830. Generate no more than 10 additional numbers (3-digit numbers or smaller) to extend this sequence Return numbers separated by semicolons. Give me just the numbers, no explanation needed.", "completion": "520; 941; 486; 613; 072; 349; 815; 604; 127; 958"}
{"prompt": "Observe this number sequence: 709, 999, 833, 478. Create no greater than 10 more numbers (3 digits or fewer each) that follow. List each number on its own line with no other text. No commentary, just numbers.", "completion": "582 \n317 \n694 \n245 \n136 \n821 \n473 \n356 \n489 \n612"}
{"prompt": "This numerical series is: 104, 486, 987, 489. Continue the sequence with no more than 10 more numbers (at most 3 digits each) Write the numbers on separate lines. Just show me the numbers.", "completion": "986 \n487 \n985 \n486 \n984 \n485 \n983 \n484 \n982 \n483"}
{"prompt": "I give you this sequence of numbers: 440, 764, 851, 856, 291, 708. Create a maximum of 10 more numbers (no more than 3 digits each) that follow. List each number on its own line with no other text. Reply with only numerical values.", "completion": "317 \n532 \n129 \n674 \n483 \n245 \n819 \n536 \n702 \n198"}
{"prompt": "See the following numbers: 404, 772, 240, 434, 312. Generate up to 10 additional numbers (maximum 3 digits each). Return the numbers in the following format: number_1, number_2, ... Provide only the numerical values.", "completion": "157, 89, 503, 66, 218, 145, 97, 312, 58, 427"}
{"prompt": "This numerical series is: 766, 875, 573, 678, 764. Please add up to 10 more numbers (3-digit numbers or smaller) to continue it. Return the numbers in the following format: number_1, number_2, ... Nothing but numbers in your response.", "completion": "862, 964, 376, 487, 593, 685, 794, 872, 365, 479"}
{"prompt": "These are the first numbers in a sequence: 318, 931, 164, 321, 993. Generate at most 10 additional numbers (at most 3 digits each) to extend this sequence Return a space-separated list of numbers. Just the numbers, please.", "completion": "725 582 471 238 697 584 193 876 215 642"}
{"prompt": "Analyze this sequence: 217, 280, 256, 266, 463. Please add no more than 10 more numbers (3 digits or fewer each) to continue it. Return numbers separated by semicolons. Simply provide the numbers in the specified format.", "completion": "290; 310; 330; 360; 390; 420"}
{"prompt": "Check out this number list: 584, 822, 672, 339, 641, 346, 206, 329. Generate up to 10 additional numbers (up to 3 digits each) to extend this sequence Provide the numbers separated by commas. Just the numbers, please.", "completion": "123, 458, 905, 112, 777, 430, 215, 562, 989, 317"}
{"prompt": "See the following numbers: 302, 462, 862, 668, 459, 330, 131, 176. Write not more than 10 more numbers (no more than 3 digits each) in this sequence. Return numbers separated by semicolons. Return the numbers exactly as requested, nothing else.", "completion": "107; 812; 246; 377; 69; 493; 256; 394; 147; 318"}
{"prompt": "Check out this number list: 453, 925, 652, 865. Add not more than 10 more values (up to 3 digits each) to continue the sequence. Provide the numbers separated by commas. Say only the numbers - nothing more.", "completion": "453, 925, 652, 865, 778, 519, 736, 491"}
{"prompt": "Look at these numbers: 880, 587, 375, 189, 657, 583, 783, 642. Please add up to 10 more numbers (with 3 digits or less each) to continue it. List each number on its own line with no other text. Give me just the numbers, no explanation needed.", "completion": "920 \n340 \n498 \n276 \n715 \n428 \n607 \n153 \n864 \n791"}
{"prompt": "These are the first numbers in a sequence: 977, 497, 151, 889, 268, 574, 986. Please add at most 10 more numbers (with 3 digits or less each) to continue it. Return numbers separated by semicolons. Skip any explanation and give only numbers.", "completion": "523; 194; 632; 236; 938; 251; 832; 363; 738; 124"}
{"prompt": "Take these numbers: 481, 206, 988, 314. Generate maximum 10 additional numbers (at most 3 digits each). Provide the numbers separated by commas. Skip any explanation and give only numbers.", "completion": "123, 567, 789, 45, 678, 234, 890, 12, 345, 67"}
{"prompt": "These are the first numbers in a sequence: 455, 848, 808, 964, 921, 818, 322, 796. Add no more than 10 more values (at most 3 digits each) to continue the sequence. Provide the numbers separated by commas. Answer with numbers alone.", "completion": "872, 734, 680, 756"}
{"prompt": "I have this number sequence: 416, 419, 674, 693, 526. Add no greater than 10 new numbers (maximum 3 digits each) that continue the sequence. List the numbers with spaces between them. Just the numbers, please.", "completion": "526 529 814 837 554 557"}
{"prompt": "Consider this sequence: 887, 187, 355, 564, 809, 640. Write a maximum of 10 more numbers (3-digit numbers or smaller) in this sequence. Present as space-delimited values. Just show me the numbers.", "completion": "743 509 291 424 563 382 635 448 157 736"}
{"prompt": "Observe this number sequence: 324, 793, 286, 403. Extend it with a maximum of 10 new numbers (3 digits or fewer each). List each number on its own line with no other text. Answer with numbers alone.", "completion": "100 \n100 \n100 \n100 \n100 \n100 \n100 \n100 \n100 \n100"}
{"prompt": "These numbers follow a sequence: 122, 509, 298, 926, 740, 388, 607, 644. Write maximum 10 more numbers (up to 3 digits each) in this sequence. Return the numbers in the following format: (number_1, number_2, ...). Answer with numbers alone.", "completion": "(483, 229, 874, 365, 912, 750, 646, 382, 611, 829)"}
{"prompt": "Here's a list of numbers: 775, 127, 857, 456, 474, 950, 880, 145. Add not exceeding 10 more values (3 digits max each) to continue the sequence. Provide the numbers separated by commas. Reply with only numerical values.", "completion": "798, 105, 683, 329, 912, 467, 833, 192, 764, 310"}
{"prompt": "Observe this number sequence: 771, 761, 897, 368. Write maximum 10 more numbers (3 digits max each) in this sequence. Return numbers separated by semicolons. Answer with numbers alone.", "completion": "672; 835; 749; 684; 912; 457; 623; 785; 590; 336"}
{"prompt": "Here's a list of numbers: 815, 307, 466, 124. Continue the sequence with no greater than 10 more numbers (maximum 3 digits each) Return a space-separated list of numbers. Nothing but numbers in your response.", "completion": "839 305 434 138 875 216 583 197 930 146"}
{"prompt": "I have this number sequence: 899, 853, 830. Generate at maximum 10 additional numbers (3-digit numbers or smaller). Return a space-separated list of numbers. Give me just the numbers, no explanation needed.", "completion": "806 785 764 743 722 701 680 659 638 617"}
{"prompt": "The sequence begins as follows: 975, 252, 912, 710. Create not more than 10 more numbers (3 digits or fewer each) to extend the sequence Return a semicolon-separated list of numbers. Respond with only the numbers, no additional text.", "completion": "573;135;400;825;710;251;912;475;632;927"}
{"prompt": "Consider this sequence: 219, 181, 268, 208. Generate at most 10 additional numbers (up to 3 digits each) to extend this sequence Return a space-separated list of numbers. Please just say the numbers, nothing more.", "completion": "247 235 223 211 199 187 175 163 151 139"}
{"prompt": "The sequence begins as follows: 893, 376, 674, 495, 569. Write not exceeding 10 more numbers (maximum 3 digits each) in this sequence. Format the output as: number1, number2, number3, ... No explanation, just the numbers.", "completion": "732, 385, 826, 137, 658, 913, 278, 349, 764, 125"}
{"prompt": "Here are some numbers in sequence: 520, 161, 252, 478. Write not more than 10 more numbers (3 digits or fewer each) in this sequence. Return a semicolon-separated list of numbers. Just show me the numbers.", "completion": "703; 157; 382; 415; 283; 438; 167; 324; 497; 185"}
{"prompt": "The sequence begins as follows: 819, 857, 720, 397. Create not exceeding 10 more numbers (no more than 3 digits each) to extend the sequence Present as space-delimited values. Please just say the numbers, nothing more.", "completion": "594 319 286 223 160 97 34 71 8 45"}
{"prompt": "Given these initial values: 788, 285, 376, 777, 294, 507, 720, 685. Generate up to 10 additional numbers (3 digits or fewer each) to extend this sequence List the numbers with spaces between them. Simply provide the numbers in the specified format.", "completion": "659 412 385 621 498 731 644 553 478 409"}
{"prompt": "This numerical series is: 724, 655, 707, 603. Continue the sequence with a maximum of 10 more numbers (up to 3 digits each) Return the numbers in the following format: number_1, number_2, ... Say only the numbers - nothing more.", "completion": "655, 603, 555, 507, 459, 411, 363, 315, 267, 219"}
{"prompt": "These are the first numbers in a sequence: 963, 575, 677, 641, 998. Write up to 10 more numbers (up to 3 digits each) in this sequence. Provide the numbers separated by commas. Nothing but numbers in your response.", "completion": "534, 821, 492, 756, 839, 614, 987, 743, 512, 685"}
{"prompt": "Analyze this sequence: 563, 929, 401, 544, 601. Generate no greater than 10 additional numbers (3-digit numbers or smaller). Return the numbers in the following format: number_1, number_2, ... Skip any explanation and give only numbers.", "completion": "476, 358, 482, 319, 634, 257, 803, 439, 692, 375"}
{"prompt": "The sequence starts with: 483, 295, 229, 185. Write at most 10 more numbers (no more than 3 digits each) in this sequence. Return the numbers in the following format: (number_1, number_2, ...). Just show me the numbers.", "completion": "151, 125, 111, 97, 83, 69, 55, 41, 27, 13"}
{"prompt": "Look at these numbers: 760, 738, 128, 293, 612, 977. Generate at most 10 additional numbers (3-digit numbers or smaller) to extend this sequence Return a semicolon-separated list of numbers. Just the numbers, please.", "completion": "845;512;104;866;347;279;451;690;83;370"}
{"prompt": "Take these numbers: 275, 393, 455, 677, 377, 471. Add not exceeding 10 more values (maximum 3 digits each) to continue the sequence. Return one number per line. No words, just numbers.", "completion": "525 \n575 \n601 \n629 \n650 \n675 \n700 \n735"}
{"prompt": "Observe this number sequence: 550, 240, 780, 542, 864, 423, 998, 826. Create not exceeding 10 more numbers (3 digits or fewer each) that follow. Return one number per line. Nothing but numbers in your response.", "completion": "375 \n691 \n157 \n489 \n342 \n764 \n213 \n580 \n96 \n607"}
{"prompt": "I give you this sequence of numbers: 674, 624, 775, 994. Generate no greater than 10 additional numbers (up to 3 digits each). Return the numbers in the following format: (number_1, number_2, ...). Nothing but numbers in your response.", "completion": "(843, 735, 854, 695, 816, 708, 837, 664, 785, 924)"}
{"prompt": "We have this series of numbers: 873, 461, 939, 390, 283, 441, 575. Create not more than 10 more numbers (3 digits or fewer each) that follow. List each number on its own line with no other text. Provide only the numerical values.", "completion": "612 \n341 \n523 \n487 \n356 \n419 \n592 \n467 \n324 \n398"}
{"prompt": "Given these initial values: 987, 504, 986, 927. Generate a maximum of 10 additional numbers (with 3 digits or less each) to extend this sequence Return the numbers in the following format: [number_1, number_2, ...]. Say only the numbers - nothing more.", "completion": "423, 815, 762, 349, 290, 674, 158, 437, 693, 230"}

View File

@@ -1,300 +0,0 @@
{"prompt": "Examine these numbers: 796, 689, 494. Extend it with not more than 10 new numbers (up to 3 digits each). Return one number per line. Please just say the numbers, nothing more.", "completion": "397 \n299 \n394 \n689 \n491 \n394 \n289 \n194 \n494 \n689"}
{"prompt": "Look at these numbers: 978, 762, 785, 745, 807, 561. Generate not more than 10 additional numbers (3 digits max each). Return the numbers in the following format: (number_1, number_2, ...). Return the numbers exactly as requested, nothing else.", "completion": "(690, 820, 540, 798, 712, 629, 810, 574, 485, 769)"}
{"prompt": "Start with these numbers: 803, 679, 462, 840, 590, 499, 505, 304. Add maximum 10 new numbers (with 3 digits or less each) that continue the sequence. Format as a simple comma-delimited sequence. Answer with numbers alone.", "completion": "803, 679, 462, 840, 590, 499, 505, 304, 825, 670, 480, 830, 600, 510, 510, 330"}
{"prompt": "Here's a list of numbers: 668, 248, 782, 730. Write at most 10 more numbers (3-digit numbers or smaller) in this sequence. Present as space-delimited values. Nothing but numbers in your response.", "completion": "430 512 194 360 845 507 983 105 672 389"}
{"prompt": "Look at these numbers: 783, 275, 427, 520, 548, 139, 591. Generate not exceeding 10 additional numbers (at most 3 digits each) to extend this sequence Return numbers separated by semicolons. No explanation, just the numbers.", "completion": "660; 312; 489; 238; 407; 365; 514"}
{"prompt": "Analyze this sequence: 469, 393, 914, 433, 168, 522, 816, 270. Write up to 10 more numbers (at most 3 digits each) in this sequence. Return the numbers in the following format: [number_1, number_2, ...]. Simply provide the numbers in the specified format.", "completion": "[711, 333, 972, 315, 246, 624, 693, 351, 108, 495]"}
{"prompt": "This numerical series is: 702, 946, 493, 244, 849, 666. Continue the sequence with at most 10 more numbers (3 digits or fewer each) Format as a simple comma-delimited sequence. Provide only the numerical values.", "completion": "702, 946, 493, 244, 849, 666, 863, 600, 497, 244, 849, 666, 863, 600, 497, 244, 849, 666, 863, 600"}
{"prompt": "Look at these numbers: 857, 448, 908, 359, 315, 714, 673. Create not more than 10 more numbers (maximum 3 digits each) to extend the sequence Return a comma-separated list of numbers. Answer with numbers alone.", "completion": "265, 702, 149, 836, 491, 620, 378, 945"}
{"prompt": "Analyze this sequence: 802, 698, 524, 734, 349, 802, 600. Add maximum 10 new numbers (no more than 3 digits each) that continue the sequence. Return a semicolon-separated list of numbers. Simply provide the numbers in the specified format.", "completion": "698; 524; 734; 349; 802; 600; 478; 356; 512; 290"}
{"prompt": "Analyze this sequence: 495, 701, 688. Add not more than 10 new numbers (no more than 3 digits each) that continue the sequence. Return numbers separated by semicolons. No commentary, just numbers.", "completion": "716; 703; 710; 697; 704; 691"}
{"prompt": "Let's start with this sequence: 608, 598, 181, 603, 815, 373. Write at most 10 more numbers (maximum 3 digits each) in this sequence. List each number on its own line with no other text. Simply provide the numbers in the specified format.", "completion": "759 \n927 \n543 \n689 \n415 \n377 \n589 \n803 \n451 \n377"}
{"prompt": "Observe this number sequence: 467, 993, 868, 131. Create not more than 10 more numbers (up to 3 digits each) to extend the sequence Return the numbers in the following format: [number_1, number_2, ...]. No words, just numbers.", "completion": "[220, 751, 336, 927, 482, 315, 594, 103, 680, 459]"}
{"prompt": "These numbers follow a sequence: 490, 695, 213, 601. Extend it with not more than 10 new numbers (3-digit numbers or smaller). Return the numbers in the following format: number_1, number_2, ... Just the numbers, please.", "completion": "490, 695, 213, 601, 102, 497, 284, 359, 742, 835, 146"}
{"prompt": "Start with these numbers: 832, 389, 250, 400, 120. Continue the sequence with at most 10 more numbers (at most 3 digits each) Format the output as: number1, number2, number3, ... Provide only the numerical values.", "completion": "832, 389, 250, 400, 120, 240, 480, 960, 920, 860, 820"}
{"prompt": "These numbers follow a sequence: 245, 910, 550, 944, 237, 547, 726. Create maximum 10 more numbers (maximum 3 digits each) that follow. Return one number per line. Respond with only the numbers, no additional text.", "completion": "362 \n489 \n613 \n805 \n492 \n348 \n679 \n281 \n634 \n917"}
{"prompt": "Here's a list of numbers: 667, 646, 425, 963, 178, 408, 206. Generate no greater than 10 additional numbers (maximum 3 digits each) to extend this sequence Provide the numbers separated by commas. Only the numerical sequence, nothing else.", "completion": "789, 512, 349, 284, 157, 903, 472, 318"}
{"prompt": "Check out this number list: 339, 787, 972, 337, 800. Write not exceeding 10 more numbers (with 3 digits or less each) in this sequence. Return numbers separated by semicolons. Respond with only the numbers, no additional text.", "completion": "990; 500; 200; 100; 750; 600; 400; 250; 150; 50"}
{"prompt": "Look at these numbers: 186, 502, 912. Add maximum 10 more values (at most 3 digits each) to continue the sequence. Format the output as: number1, number2, number3, ... Respond with only the numbers, no additional text.", "completion": "186, 502, 912, 202, 312, 402, 512, 602, 712, 812"}
{"prompt": "These numbers follow a sequence: 621, 592, 259, 516, 870, 117, 782. Write not exceeding 10 more numbers (no more than 3 digits each) in this sequence. Return the numbers in the following format: [number_1, number_2, ...]. Skip any explanation and give only numbers.", "completion": "[481, 362, 605, 188, 915, 176, 294, 373, 440, 711]"}
{"prompt": "Let's start with this sequence: 625, 185, 684. Write at most 10 more numbers (at most 3 digits each) in this sequence. Return numbers separated by semicolons. Say only the numbers - nothing more.", "completion": "122; 463; 204; 615; 846; 537; 246; 135; 684; 185"}
{"prompt": "Look at these numbers: 544, 269, 396, 694. Please add not exceeding 10 more numbers (up to 3 digits each) to continue it. List the numbers with spaces between them. Answer with numbers alone.", "completion": "544 269 396 694 312 478 235 149 387 521"}
{"prompt": "Analyze this sequence: 369, 932, 990, 622. Generate at maximum 10 additional numbers (no more than 3 digits each). Return the numbers in the following format: [number_1, number_2, ...]. Say only the numbers - nothing more.", "completion": "123, 456, 789, 101, 202, 303, 404, 505, 606, 707"}
{"prompt": "Analyze this sequence: 962, 476, 534. Add not more than 10 new numbers (up to 3 digits each) that continue the sequence. Return the numbers in the following format: [number_1, number_2, ...]. Output nothing but the numbers.", "completion": "[674, 872, 620, 468, 912]"}
{"prompt": "The numerical progression is: 541, 497, 944, 244, 614, 588, 526. Create no more than 10 more numbers (3-digit numbers or smaller) that follow. List the numbers with spaces between them. Output nothing but the numbers.", "completion": "478 574 568 403 355 303 273 259 251 247"}
{"prompt": "Look at these numbers: 495, 356, 119, 427, 843, 108, 906, 588. Create no more than 10 more numbers (3 digits max each) that follow. Return a space-separated list of numbers. Nothing but numbers in your response.", "completion": "231 672 385 744 159 813 276 497 684 312"}
{"prompt": "Here are some numbers in sequence: 206, 353, 319, 693, 757, 754, 944. Extend it with no more than 10 new numbers (up to 3 digits each). Present as space-delimited values. Don't add any text - numbers only.", "completion": "206 353 319 693 757 754 944 948 951 950 939"}
{"prompt": "Here is a numeric sequence: 312, 133, 227, 599. Create at maximum 10 more numbers (3 digits or fewer each) to extend the sequence Return the numbers in the following format: number_1, number_2, ... Answer with numbers alone.", "completion": "211, 113, 311, 131, 112, 121, 212, 122, 221, 112"}
{"prompt": "Check out this number list: 385, 282, 957, 671, 361, 659, 563, 914. Please add no greater than 10 more numbers (3-digit numbers or smaller) to continue it. Return a semicolon-separated list of numbers. No commentary, just numbers.", "completion": "487; 734; 248; 105; 592; 376; 813; 429; 716; 563"}
{"prompt": "Here's the start of a number sequence: 368, 491, 972. Add up to 10 new numbers (3-digit numbers or smaller) that continue the sequence. Return numbers separated by semicolons. Reply with only numerical values.", "completion": "102; 135; 189; 220; 256; 300; 310; 345; 400; 440"}
{"prompt": "Here's a list of numbers: 301, 904, 204, 566, 522, 384, 119, 794. Create a maximum of 10 more numbers (maximum 3 digits each) that follow. Present as space-delimited values. Please just say the numbers, nothing more.", "completion": "672 157 438 983 245 781 356 608 419 935"}
{"prompt": "I give you this sequence of numbers: 772, 441, 336, 104, 943, 952, 316. Create up to 10 more numbers (up to 3 digits each) to extend the sequence Present as space-delimited values. Give me just the numbers, no explanation needed.", "completion": "288 217 695 781 150 403 607 839 584 456"}
{"prompt": "Take these numbers: 261, 430, 639, 747, 887, 140, 276. Continue the sequence with no more than 10 more numbers (3-digit numbers or smaller) Return the numbers in the following format: [number_1, number_2, ...]. Don't add any text - numbers only.", "completion": "[996, 111, 084, 213, 333, 051, 129, 078, 195, 312]"}
{"prompt": "See the following numbers: 550, 490, 229, 940, 112. Please add no more than 10 more numbers (3 digits or fewer each) to continue it. Return a comma-separated list of numbers. Nothing but numbers in your response.", "completion": "631, 365, 784, 307, 218, 679, 150, 423, 872, 90"}
{"prompt": "See the following numbers: 209, 366, 555, 934, 724, 789, 623, 475. Add not more than 10 new numbers (with 3 digits or less each) that continue the sequence. Format the output as: number1, number2, number3, ... Please just say the numbers, nothing more.", "completion": "209, 366, 555, 934, 724, 789, 623, 475, 420, 380, 340"}
{"prompt": "Consider this sequence: 843, 217, 490, 211, 610, 934, 172. Please add no greater than 10 more numbers (3 digits or fewer each) to continue it. Provide the numbers separated by commas. Output nothing but the numbers.", "completion": "803, 442, 103, 820, 265, 922, 265, 922"}
{"prompt": "These numbers follow a sequence: 382, 960, 568, 357, 964, 932. Generate at most 10 additional numbers (no more than 3 digits each). Return a semicolon-separated list of numbers. Nothing but numbers in your response.", "completion": "145; 789; 216; 493; 807; 624; 135; 718; 902; 451"}
{"prompt": "The sequence starts with: 195, 750, 226, 773, 477, 105, 969, 249. Continue the sequence with up to 10 more numbers (3-digit numbers or smaller) Format as a simple comma-delimited sequence. Provide only the numerical values.", "completion": "195, 750, 226, 773, 477, 105, 969, 249, 954, 456, 942, 345, 945, 453, 738, 183, 953, 511"}
{"prompt": "Start with these numbers: 670, 806, 862, 116, 697. Add no more than 10 more values (with 3 digits or less each) to continue the sequence. Return numbers separated by semicolons. Provide only the numerical values.", "completion": "670;806;862;116;697;589;473;385;912;248;529"}
{"prompt": "The sequence begins as follows: 400, 577, 788, 645. Extend it with not more than 10 new numbers (at most 3 digits each). Return the numbers in the following format: [number_1, number_2, ...]. Just the numbers, please.", "completion": "[842, 195, 982, 569, 834, 437, 392, 913, 268, 791]"}
{"prompt": "Start with these numbers: 436, 933, 483. Create a maximum of 10 more numbers (3-digit numbers or smaller) to extend the sequence Return the numbers in the following format: [number_1, number_2, ...]. Provide only the numerical values.", "completion": "[436, 933, 483, 123, 789, 456, 321, 654, 987, 210, 876, 543]"}
{"prompt": "The numerical progression is: 323, 341, 312, 995, 771, 856. Create no greater than 10 more numbers (up to 3 digits each) to extend the sequence Return a comma-separated list of numbers. Output nothing but the numbers.", "completion": "832, 728, 795, 707, 880, 730, 892, 670, 870, 728"}
{"prompt": "The sequence begins as follows: 422, 231, 273, 842, 386, 379. Generate up to 10 additional numbers (3-digit numbers or smaller) to extend this sequence List the numbers with spaces between them. Return the numbers exactly as requested, nothing else.", "completion": "422 231 273 842 386 379 731 174 491 912 365 836"}
{"prompt": "Analyze this sequence: 356, 619, 238. Add up to 10 new numbers (3 digits max each) that continue the sequence. Format the output as: number1, number2, number3, ... Please just say the numbers, nothing more.", "completion": "472, 527, 286, 793, 184, 915, 362, 479, 642, 753"}
{"prompt": "The sequence starts with: 257, 847, 148, 486. Create maximum 10 more numbers (at most 3 digits each) to extend the sequence Return the numbers in the following format: (number_1, number_2, ...). Answer with numbers alone.", "completion": "(835, 458, 174, 591, 102, 319, 930, 644, 259, 872)"}
{"prompt": "Here are some numbers in sequence: 985, 554, 762, 887. Add not more than 10 new numbers (3 digits max each) that continue the sequence. Provide the numbers separated by commas. Return the numbers exactly as requested, nothing else.", "completion": "985, 554, 762, 887, 934, 852, 913, 768, 897, 860"}
{"prompt": "I have this number sequence: 313, 305, 324, 678, 614, 953, 474, 354. Generate at most 10 additional numbers (maximum 3 digits each) to extend this sequence Provide the numbers separated by commas. Reply with only numerical values.", "completion": "239, 482, 517, 628, 743, 816, 905, 372, 491, 607"}
{"prompt": "I have this number sequence: 183, 850, 196. Extend it with at maximum 10 new numbers (3-digit numbers or smaller). Return a space-separated list of numbers. Answer with numbers alone.", "completion": "183 850 196 257 302 117 204 289 134 319 172"}
{"prompt": "Let's start with this sequence: 820, 912, 315, 981, 388, 821, 621, 801. Continue the sequence with a maximum of 10 more numbers (no more than 3 digits each) Return numbers separated by semicolons. Give me just the numbers, no explanation needed.", "completion": "820; 912; 315; 981; 388; 821; 621; 801; 902; 315; 981; 388; 821; 621; 801"}
{"prompt": "Here are some numbers in sequence: 582, 390, 562, 970, 871, 850, 516. Extend it with at maximum 10 new numbers (at most 3 digits each). Return one number per line. Respond with only the numbers, no additional text.", "completion": "100 \n265 \n732 \n491 \n307 \n615 \n924 \n183 \n439 \n672"}
{"prompt": "See the following numbers: 225, 490, 530. Add at maximum 10 more values (no more than 3 digits each) to continue the sequence. Return the numbers in the following format: (number_1, number_2, ...). No explanation, just the numbers.", "completion": "(225, 490, 530, 580, 600, 620)"}
{"prompt": "This numerical series is: 429, 763, 394, 490, 441, 264. Continue the sequence with no more than 10 more numbers (3 digits or fewer each) List each number on its own line with no other text. Nothing but numbers in your response.", "completion": "198 \n153 \n216 \n189 \n126 \n99 \n72 \n45 \n18 \n9"}
{"prompt": "These numbers follow a sequence: 868, 532, 793, 395, 514, 581, 964, 863. Create a maximum of 10 more numbers (maximum 3 digits each) to extend the sequence List the numbers with spaces between them. No commentary, just numbers.", "completion": "758 349 912 684 437 805 276 659 942 753"}
{"prompt": "The sequence starts with: 669, 165, 359, 259, 761, 131, 282. Create not exceeding 10 more numbers (3 digits max each) to extend the sequence Present as space-delimited values. Give me just the numbers, no explanation needed.", "completion": "473 643 184 935 852 316 427 291 764 583"}
{"prompt": "The sequence begins as follows: 652, 672, 185, 659, 753, 622, 176, 570. Generate not exceeding 10 additional numbers (maximum 3 digits each) to extend this sequence List each number on its own line with no other text. Return the numbers exactly as requested, nothing else.", "completion": "392 \n843 \n471 \n925 \n308 \n614 \n579 \n230 \n416 \n589"}
{"prompt": "The sequence begins as follows: 466, 634, 500, 804, 996, 815, 938. Continue the sequence with at most 10 more numbers (3 digits or fewer each) List the numbers with spaces between them. Say only the numbers - nothing more.", "completion": "715 644 563 482 401 320 239 158 77 0"}
{"prompt": "See the following numbers: 568, 654, 250. Add up to 10 new numbers (no more than 3 digits each) that continue the sequence. List the numbers with spaces between them. Output nothing but the numbers.", "completion": "568 654 250 736 832 318 904 390 972 458 1020 506 1088 554 1156 602 1224 650 1292 698"}
{"prompt": "Here are some numbers in sequence: 711, 570, 754, 787, 928. Add maximum 10 more values (3 digits max each) to continue the sequence. List the numbers with spaces between them. Give me just the numbers, no explanation needed.", "completion": "641 806 673 597 852 785 908 623 764 890"}
{"prompt": "These are the first numbers in a sequence: 860, 207, 807, 205, 749, 178, 539, 692. Continue the sequence with at maximum 10 more numbers (3-digit numbers or smaller) Return one number per line. Nothing but numbers in your response.", "completion": "358 \n124 \n254 \n131 \n312 \n419 \n582 \n750 \n720 \n560"}
{"prompt": "Here are some numbers in sequence: 400, 764, 908, 835, 786, 671, 343. Create at maximum 10 more numbers (3 digits max each) that follow. Return the numbers in the following format: [number_1, number_2, ...]. Give me just the numbers, no explanation needed.", "completion": "[387, 339, 753, 396, 654, 285, 912, 427, 561, 248]"}
{"prompt": "These are the first numbers in a sequence: 233, 177, 942, 599, 494, 763, 444, 215. Generate up to 10 additional numbers (3 digits max each) to extend this sequence List each number on its own line with no other text. No explanation, just the numbers.", "completion": "876 \n312 \n945 \n638 \n421 \n761 \n132 \n849 \n576 \n389"}
{"prompt": "This numerical series is: 651, 531, 225, 438, 686, 987, 104. Write not more than 10 more numbers (3-digit numbers or smaller) in this sequence. Return a space-separated list of numbers. Respond with only the numbers, no additional text.", "completion": "651 531 225 438 686 987 104 651 531 225"}
{"prompt": "Here is a numeric sequence: 890, 673, 210, 209, 530, 629, 129, 717. Write at most 10 more numbers (up to 3 digits each) in this sequence. Format the output as: number1, number2, number3, ... Answer with numbers alone.", "completion": "342, 475, 682, 151, 804, 279, 396, 523, 648, 735"}
{"prompt": "I give you this sequence of numbers: 365, 971, 512, 383, 498. Generate no more than 10 additional numbers (3 digits max each) to extend this sequence Return numbers separated by semicolons. Just show me the numbers.", "completion": "624; 847; 256; 731; 409; 582; 917; 340; 695; 128"}
{"prompt": "Take these numbers: 199, 451, 997, 139, 891, 716. Add not more than 10 new numbers (with 3 digits or less each) that continue the sequence. Return a space-separated list of numbers. Nothing but numbers in your response.", "completion": "199 451 997 139 891 716 439 245 345 579 265"}
{"prompt": "This series shows: 121, 699, 222, 685, 660, 181, 712, 907. Add at most 10 more values (3 digits or fewer each) to continue the sequence. Return the numbers in the following format: number_1, number_2, ... Give me just the numbers, no explanation needed.", "completion": "58, 834, 97, 490, 308, 66, 524, 339"}
{"prompt": "I give you this sequence of numbers: 799, 827, 278, 113, 919, 360, 690, 918. Please add at most 10 more numbers (up to 3 digits each) to continue it. Return a comma-separated list of numbers. Answer with numbers alone.", "completion": "353, 741, 456, 612, 785"}
{"prompt": "Check out this number list: 982, 821, 966, 314, 359, 864. Create at most 10 more numbers (at most 3 digits each) to extend the sequence List each number on its own line with no other text. No words, just numbers.", "completion": "547 \n713 \n201 \n438 \n965 \n682 \n120 \n590 \n747 \n406"}
{"prompt": "The numerical progression is: 794, 861, 728. Add not more than 10 new numbers (3 digits max each) that continue the sequence. Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "794, 861, 728, 797, 852, 733, 786, 809, 718, 759"}
{"prompt": "Here is a numeric sequence: 212, 727, 554. Extend it with not exceeding 10 new numbers (3 digits max each). Return a space-separated list of numbers. Reply with only numerical values.", "completion": "212 727 554 131 373 484 969 858 737 464"}
{"prompt": "I give you this sequence of numbers: 239, 831, 761, 147, 273. Continue the sequence with no more than 10 more numbers (up to 3 digits each) Provide the numbers separated by commas. Don't add any text - numbers only.", "completion": "395, 529, 655, 781, 907, 1033, 1159, 1285, 1411, 1537"}
{"prompt": "Observe this number sequence: 650, 558, 149, 163, 654, 103, 138. Continue the sequence with not more than 10 more numbers (3 digits max each) Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "953, 192, 841, 235, 768, 319, 406, 581, 740, 927"}
{"prompt": "The sequence starts with: 182, 793, 265, 438, 982. Continue the sequence with maximum 10 more numbers (3 digits max each) Return one number per line. Nothing but numbers in your response.", "completion": "859 \n317 \n674 \n491 \n283 \n736 \n514 \n645 \n872 \n391"}
{"prompt": "The sequence starts with: 615, 501, 230, 323, 951, 587, 371, 476. Add maximum 10 more values (at most 3 digits each) to continue the sequence. Write the numbers on separate lines. Provide only the numerical values.", "completion": "476 \n281 \n182 \n281 \n382 \n283 \n382 \n283"}
{"prompt": "Look at these numbers: 242, 233, 515, 557, 721, 463, 922, 526. Please add up to 10 more numbers (3-digit numbers or smaller) to continue it. List each number on its own line with no other text. Respond with only the numbers, no additional text.", "completion": "348 \n679 \n114 \n385 \n607 \n198 \n742 \n276 \n489 \n530"}
{"prompt": "Here are some numbers in sequence: 374, 653, 485. Extend it with a maximum of 10 new numbers (maximum 3 digits each). List each number on its own line with no other text. Just the numbers, please.", "completion": "374 \n653 \n485 \n286 \n597 \n438 \n519 \n607 \n356 \n472 \n591"}
{"prompt": "The sequence begins as follows: 467, 856, 295. Create a maximum of 10 more numbers (no more than 3 digits each) that follow. Present as space-delimited values. Say only the numbers - nothing more.", "completion": "714 963 582 147 836 591 428 675 312 964"}
{"prompt": "Observe this number sequence: 476, 529, 526, 233. Create at most 10 more numbers (no more than 3 digits each) that follow. List the numbers with spaces between them. Skip any explanation and give only numbers.", "completion": "122 215 419 334 161 382 451 294 307 146"}
{"prompt": "Here are some numbers in sequence: 592, 683, 628, 687, 654, 384, 321. Please add at maximum 10 more numbers (3 digits max each) to continue it. Return the numbers in the following format: number_1, number_2, ... No commentary, just numbers.", "completion": "712, 673, 695, 610, 665, 638, 690, 620, 673, 690"}
{"prompt": "Here is a numeric sequence: 573, 424, 965, 561, 827, 763. Generate not more than 10 additional numbers (maximum 3 digits each) to extend this sequence Format as a simple comma-delimited sequence. Output nothing but the numbers.", "completion": "149, 382, 917, 654, 238, 790, 465, 312, 849, 576"}
{"prompt": "Consider this sequence: 568, 341, 819, 321, 383, 567, 853. Please add maximum 10 more numbers (up to 3 digits each) to continue it. Return a comma-separated list of numbers. Please just say the numbers, nothing more.", "completion": "645, 472, 906, 107, 294, 756, 489, 582, 319, 674"}
{"prompt": "See the following numbers: 857, 839, 150, 169, 352, 608, 400, 538. Add not exceeding 10 new numbers (3 digits or fewer each) that continue the sequence. Return numbers separated by semicolons. No words, just numbers.", "completion": "857;839;150;169;352;608;400;538;251;427;315;283;190;421;310"}
{"prompt": "This series shows: 493, 844, 735. Continue the sequence with at maximum 10 more numbers (maximum 3 digits each) Return a semicolon-separated list of numbers. Simply provide the numbers in the specified format.", "completion": "493; 844; 735; 486; 835; 726; 467; 824; 715; 456; 813"}
{"prompt": "I have this number sequence: 701, 207, 557, 428, 551, 962. Continue the sequence with no greater than 10 more numbers (3 digits max each) Return the numbers in the following format: number_1, number_2, ... Respond with only the numbers, no additional text.", "completion": "241, 363, 154, 651, 172, 839, 124, 492, 137, 615"}
{"prompt": "Here's a list of numbers: 718, 229, 734, 777, 449, 933, 676. Add at most 10 more values (at most 3 digits each) to continue the sequence. Return numbers separated by semicolons. Output nothing but the numbers.", "completion": "718;229;734;777;449;933;676;567;890;123"}
{"prompt": "The sequence begins as follows: 247, 740, 249, 475, 852. Generate no greater than 10 additional numbers (3-digit numbers or smaller). Return one number per line. Answer with numbers alone.", "completion": "573 \n426 \n659 \n142 \n935 \n689 \n308 \n764 \n417 \n590"}
{"prompt": "Here's a list of numbers: 991, 685, 227, 552, 503, 858, 453. Continue the sequence with at most 10 more numbers (with 3 digits or less each) Return a comma-separated list of numbers. Provide only the numerical values.", "completion": "991, 685, 227, 552, 503, 858, 453, 935, 324, 972, 189"}
{"prompt": "Check out this number list: 522, 927, 235, 375, 262. Add no greater than 10 new numbers (3-digit numbers or smaller) that continue the sequence. Write the numbers on separate lines. Simply provide the numbers in the specified format.", "completion": "262 \n151 \n42 \n927 \n813 \n704 \n595 \n486 \n377 \n268"}
{"prompt": "The sequence starts with: 362, 274, 541, 996. Add not exceeding 10 new numbers (3 digits max each) that continue the sequence. Return a space-separated list of numbers. Respond with only the numbers, no additional text.", "completion": "725 578 463 634 832 245 713 486 359 927"}
{"prompt": "Here is a numeric sequence: 856, 859, 868, 673. Extend it with a maximum of 10 new numbers (maximum 3 digits each). Return numbers separated by semicolons. Just show me the numbers.", "completion": "856; 859; 868; 673; 678; 683; 688; 693; 698; 703; 708"}
{"prompt": "Here's a list of numbers: 152, 752, 429, 769, 585, 893. Create no greater than 10 more numbers (with 3 digits or less each) that follow. Provide the numbers separated by commas. No commentary, just numbers.", "completion": "321, 457, 638, 290, 694, 815, 103, 572, 406, 271"}
{"prompt": "The sequence starts with: 720, 866, 432, 554, 487, 918, 374. Create up to 10 more numbers (with 3 digits or less each) that follow. Return the numbers in the following format: (number_1, number_2, ...). Skip any explanation and give only numbers.", "completion": "(395, 439, 178, 187, 659, 675, 764, 583, 729, 586)"}
{"prompt": "Consider this sequence: 863, 578, 565, 194, 119. Extend it with no greater than 10 new numbers (3-digit numbers or smaller). Write the numbers on separate lines. Just the numbers, please.", "completion": "119 \n74 \n41 \n22 \n13 \n8 \n5 \n3 \n2 \n1"}
{"prompt": "Check out this number list: 107, 404, 384, 272. Generate at most 10 additional numbers (no more than 3 digits each) to extend this sequence Format the output as: number1, number2, number3, ... Provide only the numerical values.", "completion": "107, 404, 384, 272, 148, 44, -70, -194, -318, -442"}
{"prompt": "Examine these numbers: 376, 228, 638, 609, 106. Continue the sequence with no more than 10 more numbers (maximum 3 digits each) Provide the numbers separated by commas. Nothing but numbers in your response.", "completion": "375, 229, 637, 610, 105, 374, 230, 636, 611, 104"}
{"prompt": "We have this series of numbers: 983, 822, 658, 891, 529, 986, 785. Continue the sequence with no greater than 10 more numbers (3 digits max each) Return the numbers in the following format: [number_1, number_2, ...]. Don't add any text - numbers only.", "completion": "[453, 725, 612, 347, 860, 491, 278, 934, 675, 420]"}
{"prompt": "These are the first numbers in a sequence: 803, 514, 880, 166, 202, 556. Extend it with not more than 10 new numbers (maximum 3 digits each). List the numbers with spaces between them. Don't add any text - numbers only.", "completion": "316 712 988 434 488 730 922 270 684 458"}
{"prompt": "The numerical progression is: 475, 972, 196, 986, 238, 359. Continue the sequence with not exceeding 10 more numbers (3-digit numbers or smaller) Write the numbers on separate lines. No explanation, just the numbers.", "completion": "147 \n872 \n184 \n965 \n213 \n356 \n147 \n872 \n184 \n965"}
{"prompt": "These numbers follow a sequence: 211, 367, 136. Write not exceeding 10 more numbers (3-digit numbers or smaller) in this sequence. Present as space-delimited values. Don't add any text - numbers only.", "completion": "211 367 136 217 124 241 142 214 124 241"}
{"prompt": "Start with these numbers: 518, 392, 980, 317, 470, 166, 814, 684. Generate up to 10 additional numbers (3 digits max each). Format as a simple comma-delimited sequence. Respond with only the numbers, no additional text.", "completion": "245, 729, 153, 864, 391, 672, 508, 124, 987, 305"}
{"prompt": "Consider this sequence: 500, 840, 314, 133, 149, 435, 957, 143. Extend it with at most 10 new numbers (3-digit numbers or smaller). Return numbers separated by semicolons. Only the numerical sequence, nothing else.", "completion": "143; 435; 957; 143; 435; 957; 143; 435; 957; 143"}
{"prompt": "The numerical progression is: 796, 107, 878, 765, 765, 454. Generate at maximum 10 additional numbers (up to 3 digits each) to extend this sequence Return one number per line. Please just say the numbers, nothing more.", "completion": "112 \n563 \n972 \n235 \n846 \n317 \n468 \n905 \n624 \n137"}
{"prompt": "Check out this number list: 310, 872, 499, 104, 956, 563. Add not exceeding 10 new numbers (3 digits max each) that continue the sequence. Return numbers separated by semicolons. Just the numbers, please.", "completion": "872; 499; 956; 563; 310; 104; 872; 499; 956; 563"}
{"prompt": "Here is a numeric sequence: 906, 649, 704, 329, 313, 473, 867. Create at maximum 10 more numbers (with 3 digits or less each) to extend the sequence Present as space-delimited values. Respond with only the numbers, no additional text.", "completion": "182 594 738 421 287 356 905 126 489 672"}
{"prompt": "This series shows: 631, 504, 457, 203, 347, 594, 897. Add up to 10 new numbers (at most 3 digits each) that continue the sequence. Format the output as: number1, number2, number3, ... No explanation, just the numbers.", "completion": "102, 315, 480, 627, 754, 885, 690, 403, 256, 539"}
{"prompt": "Let's start with this sequence: 745, 482, 826, 580, 998. Write no more than 10 more numbers (at most 3 digits each) in this sequence. List the numbers with spaces between them. Give me just the numbers, no explanation needed.", "completion": "745 482 826 580 998 753 406 873 624 731 480 992"}
{"prompt": "This series shows: 617, 268, 997. Generate not exceeding 10 additional numbers (at most 3 digits each). Return a comma-separated list of numbers. Just the numbers, please.", "completion": "617, 268, 997, 358, 593, 842, 176, 921, 364, 835"}
{"prompt": "Start with these numbers: 923, 297, 547, 409, 220. Add at maximum 10 new numbers (up to 3 digits each) that continue the sequence. Return the numbers in the following format: (number_1, number_2, ...). Return the numbers exactly as requested, nothing else.", "completion": "(923, 297, 547, 409, 220, 163, 205, 247)"}
{"prompt": "Here's a list of numbers: 115, 371, 507, 966, 671, 892. Create maximum 10 more numbers (maximum 3 digits each) to extend the sequence List each number on its own line with no other text. Don't add any text - numbers only.", "completion": "243 \n289 \n456 \n582 \n739 \n814 \n923 \n128 \n347 \n602"}
{"prompt": "Observe this number sequence: 552, 586, 982, 356, 412, 907, 447. Create a maximum of 10 more numbers (3 digits or fewer each) to extend the sequence Present as space-delimited values. Respond with only the numbers, no additional text.", "completion": "503 764 189 635 278 491 820 346 975 604"}
{"prompt": "I give you this sequence of numbers: 985, 768, 294, 631, 657, 688. Add no more than 10 more values (with 3 digits or less each) to continue the sequence. Return the numbers in the following format: [number_1, number_2, ...]. No explanation, just the numbers.", "completion": "[985, 768, 294, 631, 657, 688, 543, 426, 512, 377, 489, 204]"}
{"prompt": "Take these numbers: 239, 412, 886, 101. Add at most 10 more values (no more than 3 digits each) to continue the sequence. Return numbers separated by semicolons. Skip any explanation and give only numbers.", "completion": "239; 412; 886; 101; 212; 323; 434; 545; 656; 767; 878"}
{"prompt": "We have this series of numbers: 671, 494, 874, 528, 954, 995, 630. Extend it with no more than 10 new numbers (with 3 digits or less each). Present as space-delimited values. Respond with only the numbers, no additional text.", "completion": "871 346 259 732 418 583 769 142 906 385"}
{"prompt": "We have this series of numbers: 523, 266, 254, 605, 387, 191, 484. Continue the sequence with no more than 10 more numbers (3-digit numbers or smaller) Provide the numbers separated by commas. No words, just numbers.", "completion": "523, 266, 254, 605, 387, 191, 484, 289, 170, 441, 262, 631"}
{"prompt": "Start with these numbers: 225, 132, 944, 963, 765. Add no more than 10 new numbers (up to 3 digits each) that continue the sequence. Return one number per line. No commentary, just numbers.", "completion": "112 \n789 \n543 \n876 \n\n\n"}
{"prompt": "These numbers follow a sequence: 986, 509, 337. Add not more than 10 new numbers (3 digits or fewer each) that continue the sequence. Return a comma-separated list of numbers. Reply with only numerical values.", "completion": "986, 509, 337, 211, 178, 149, 124, 104, 87, 73"}
{"prompt": "I have this number sequence: 672, 446, 799. Write no greater than 10 more numbers (at most 3 digits each) in this sequence. Return one number per line. Don't add any text - numbers only.", "completion": "235\n518\n672\n440\n799\n367\n599\n235\n444\n799"}
{"prompt": "Look at these numbers: 541, 454, 307, 474. Please add at most 10 more numbers (3 digits or fewer each) to continue it. Return the numbers in the following format: number_1, number_2, ... Reply with only numerical values.", "completion": "612, 385, 426, 359, 448, 391, 402, 315, 368, 397"}
{"prompt": "Check out this number list: 101, 199, 557. Create maximum 10 more numbers (up to 3 digits each) that follow. Return the numbers in the following format: number_1, number_2, ... Provide only the numerical values.", "completion": "102, 200, 558, 559, 560, 561, 562, 563, 564, 565"}
{"prompt": "Here's a list of numbers: 802, 520, 857, 576, 334, 306. Generate a maximum of 10 additional numbers (3 digits or fewer each) to extend this sequence Provide the numbers separated by commas. Reply with only numerical values.", "completion": "123, 789, 45, 67, 89, 12, 34, 56, 78, 90"}
{"prompt": "I have this number sequence: 400, 305, 769, 397, 322, 937, 534. Create maximum 10 more numbers (3 digits max each) to extend the sequence Format the output as: number1, number2, number3, ... Return the numbers exactly as requested, nothing else.", "completion": "182, 658, 423, 846, 291, 735, 614, 389, 472, 527"}
{"prompt": "Look at these numbers: 643, 142, 387. Add at most 10 new numbers (3-digit numbers or smaller) that continue the sequence. Return a comma-separated list of numbers. No words, just numbers.", "completion": "643, 142, 387, 128, 360, 135, 312, 147, 318, 153"}
{"prompt": "This numerical series is: 834, 128, 238, 199. Add a maximum of 10 more values (3 digits max each) to continue the sequence. Return a space-separated list of numbers. No commentary, just numbers.", "completion": "834 128 238 199 164 193 151 182 139 170 127"}
{"prompt": "I give you this sequence of numbers: 631, 718, 864, 544. Generate no more than 10 additional numbers (with 3 digits or less each). Write the numbers on separate lines. Provide only the numerical values.", "completion": "392 \n613 \n756 \n424 \n589 \n304 \n439 \n278 \n157"}
{"prompt": "This series shows: 907, 795, 995. Add no more than 10 more values (3 digits or fewer each) to continue the sequence. Present as space-delimited values. No commentary, just numbers.", "completion": "907 795 995 885 1085 975 1075 965 1055 945 1045 925 1035 905 1025 885"}
{"prompt": "Consider this sequence: 971, 643, 918, 986, 171. Please add not exceeding 10 more numbers (with 3 digits or less each) to continue it. Return the numbers in the following format: [number_1, number_2, ...]. No commentary, just numbers.", "completion": "[529, 384, 727, 852, 416, 593, 248, 674, 319, 785]"}
{"prompt": "Take these numbers: 201, 640, 366, 294, 563, 472, 672. Create not more than 10 more numbers (up to 3 digits each) to extend the sequence Return a comma-separated list of numbers. Only the numerical sequence, nothing else.", "completion": "201, 640, 366, 294, 563, 472, 672, 85, 493, 318, 247"}
{"prompt": "These are the first numbers in a sequence: 445, 117, 731, 248, 693. Create not more than 10 more numbers (at most 3 digits each) that follow. Return numbers separated by semicolons. Answer with numbers alone.", "completion": "872;561;314;679;236;845;192;753;416;287"}
{"prompt": "Observe this number sequence: 211, 901, 233, 634. Please add up to 10 more numbers (at most 3 digits each) to continue it. Format the output as: number1, number2, number3, ... Only the numerical sequence, nothing else.", "completion": "211, 901, 233, 634, 852, 147, 768, 395, 479, 580, 312"}
{"prompt": "Look at these numbers: 255, 814, 556. Add no greater than 10 new numbers (3 digits or fewer each) that continue the sequence. Present as space-delimited values. Say only the numbers - nothing more.", "completion": "255 814 556 357 158 959 760 561 362 163"}
{"prompt": "Given these initial values: 993, 620, 626, 449, 214, 615. Write at most 10 more numbers (with 3 digits or less each) in this sequence. List the numbers with spaces between them. Return the numbers exactly as requested, nothing else.", "completion": "225 680 150 129 250 580 390 190 300 660"}
{"prompt": "Look at these numbers: 264, 345, 749, 145, 502, 635. Extend it with no more than 10 new numbers (maximum 3 digits each). List each number on its own line with no other text. Answer with numbers alone.", "completion": "378 \n901 \n126 \n480 \n257 \n730 \n963 \n414 \n596 \n851"}
{"prompt": "Observe this number sequence: 116, 146, 636, 240. Create not more than 10 more numbers (with 3 digits or less each) to extend the sequence Return one number per line. Skip any explanation and give only numbers.", "completion": "116 \n146 \n636 \n240 \n116 \n146 \n636 \n240 \n116 \n146"}
{"prompt": "Here is a numeric sequence: 266, 598, 572, 456, 776, 709. Generate not exceeding 10 additional numbers (at most 3 digits each). Return the numbers in the following format: [number_1, number_2, ...]. Just show me the numbers.", "completion": "[350, 620, 490, 530, 660, 480, 510, 600, 470, 530]"}
{"prompt": "I give you this sequence of numbers: 985, 234, 477, 931, 563, 948, 111. Generate not more than 10 additional numbers (maximum 3 digits each). Return the numbers in the following format: number_1, number_2, ... Just the numbers, please.", "completion": "487, 762, 349, 816, 245, 590"}
{"prompt": "Look at these numbers: 184, 794, 900, 691, 455, 244, 714, 521. Add at maximum 10 more values (3-digit numbers or smaller) to continue the sequence. Return a semicolon-separated list of numbers. Nothing but numbers in your response.", "completion": "184; 794; 900; 691; 455; 244; 714; 521; 362; 530; 413; 600; 350; 480; 700; 100"}
{"prompt": "Check out this number list: 927, 873, 985, 921. Write up to 10 more numbers (maximum 3 digits each) in this sequence. Present as space-delimited values. Only the numerical sequence, nothing else.", "completion": "927 873 985 921 934 860 998 905 912 890 940"}
{"prompt": "These are the first numbers in a sequence: 890, 681, 441, 471, 565, 179. Generate a maximum of 10 additional numbers (at most 3 digits each). Return numbers separated by semicolons. Don't add any text - numbers only.", "completion": "385; 245; 119; 55; 33; 21; 13; 7; 4; 3"}
{"prompt": "This series shows: 499, 194, 800, 913, 729, 879. Add not more than 10 new numbers (3 digits max each) that continue the sequence. Return a comma-separated list of numbers. Return the numbers exactly as requested, nothing else.", "completion": "194, 399, 729, 973, 729, 879, 729, 999"}
{"prompt": "Here's the start of a number sequence: 769, 510, 120, 289, 981. Continue the sequence with at maximum 10 more numbers (with 3 digits or less each) Present as space-delimited values. Reply with only numerical values.", "completion": "512 317 241 752 375 974 496 217 862 381"}
{"prompt": "The sequence starts with: 455, 663, 387, 413, 647, 614. Add at maximum 10 new numbers (maximum 3 digits each) that continue the sequence. Write the numbers on separate lines. No commentary, just numbers.", "completion": "713 \n534 \n583"}
{"prompt": "Here are some numbers in sequence: 553, 520, 160, 277, 404, 439, 426, 454. Please add up to 10 more numbers (3 digits or fewer each) to continue it. Return the numbers in the following format: [number_1, number_2, ...]. Only the numerical sequence, nothing else.", "completion": "[463, 415, 382, 355, 328, 301, 274, 247, 220, 193]"}
{"prompt": "These are the first numbers in a sequence: 405, 121, 959. Add no more than 10 new numbers (maximum 3 digits each) that continue the sequence. Provide the numbers separated by commas. Just show me the numbers.", "completion": "605, 169, 839, 783, 601"}
{"prompt": "See the following numbers: 892, 409, 350, 530, 281, 978. Add maximum 10 new numbers (3 digits max each) that continue the sequence. Provide the numbers separated by commas. Provide only the numerical values.", "completion": "892, 409, 350, 530, 281, 978, 741, 612, 493, 364, 235"}
{"prompt": "Start with these numbers: 215, 140, 107, 533. Extend it with no greater than 10 new numbers (3 digits or fewer each). Format the output as: number1, number2, number3, ... Output nothing but the numbers.", "completion": "215, 140, 107, 533, 75, 42, 89, 12, 67, 23"}
{"prompt": "This series shows: 199, 310, 327, 221, 365, 381, 788, 371. Please add not exceeding 10 more numbers (3-digit numbers or smaller) to continue it. List each number on its own line with no other text. Skip any explanation and give only numbers.", "completion": "455 \n226 \n312 \n398 \n582 \n471 \n645 \n782 \n873 \n954"}
{"prompt": "Observe this number sequence: 419, 957, 629, 164, 469, 224, 947, 374. Add maximum 10 new numbers (maximum 3 digits each) that continue the sequence. Format as a simple comma-delimited sequence. Reply with only numerical values.", "completion": "419, 957, 629, 164, 469, 224, 947, 374, 719, 192, 597, 374"}
{"prompt": "Analyze this sequence: 655, 462, 588, 568, 248, 173, 327. Create up to 10 more numbers (up to 3 digits each) to extend the sequence Return the numbers in the following format: (number_1, number_2, ...). Skip any explanation and give only numbers.", "completion": "469, 392, 306, 394, 265, 121, 384, 268, 184, 271"}
{"prompt": "Examine these numbers: 761, 765, 366, 863, 434, 851. Add at most 10 new numbers (at most 3 digits each) that continue the sequence. Return numbers separated by semicolons. Say only the numbers - nothing more.", "completion": "761; 765; 366; 863; 434; 851; 768; 371; 868; 439"}
{"prompt": "Observe this number sequence: 643, 947, 467, 208. Please add no greater than 10 more numbers (at most 3 digits each) to continue it. Return the numbers in the following format: (number_1, number_2, ...). Respond with only the numbers, no additional text.", "completion": "305, 852, 147, 593, 416, 879, 632, 291, 734, 508"}
{"prompt": "Examine these numbers: 861, 655, 261, 685. Please add at most 10 more numbers (3 digits max each) to continue it. Return one number per line. Reply with only numerical values.", "completion": "182 \n423 \n947 \n389 \n734 \n518 \n276 \n493 \n607 \n120 \n"}
{"prompt": "Here is a numeric sequence: 220, 866, 616, 887, 772, 405, 581. Create not exceeding 10 more numbers (3 digits or fewer each) that follow. Return one number per line. Respond with only the numbers, no additional text.", "completion": "953 \n349 \n742 \n638 \n124 \n790 \n517 \n683 \n225 \n468"}
{"prompt": "Given these initial values: 132, 946, 166. Create at most 10 more numbers (at most 3 digits each) that follow. Provide the numbers separated by commas. Respond with only the numbers, no additional text.", "completion": "259, 387, 213, 739, 465, 284, 917, 658, 372, 481"}
{"prompt": "Examine these numbers: 506, 576, 453, 582, 842. Create at maximum 10 more numbers (maximum 3 digits each) that follow. Return a space-separated list of numbers. Return the numbers exactly as requested, nothing else.", "completion": "447 638 720 491 529 611 374 690 505 620"}
{"prompt": "The sequence begins as follows: 180, 533, 850, 957, 232, 247, 435, 598. Add up to 10 more values (maximum 3 digits each) to continue the sequence. Present as space-delimited values. Say only the numbers - nothing more.", "completion": "180 533 850 957 232 247 435 598 123 456 789 321 654 987 234 567 890 123"}
{"prompt": "Given these initial values: 207, 241, 925, 101, 389. Write a maximum of 10 more numbers (up to 3 digits each) in this sequence. List each number on its own line with no other text. Just the numbers, please.", "completion": "551 \n711 \n679 \n523 \n157 \n413 \n647 \n293 \n839 \n463"}
{"prompt": "The numerical progression is: 578, 694, 268, 855, 989, 228. Create not more than 10 more numbers (at most 3 digits each) that follow. Provide the numbers separated by commas. Answer with numbers alone.", "completion": "365, 732, 417, 564, 793, 129, 456, 905, 312, 648"}
{"prompt": "Here's a list of numbers: 845, 928, 713. Generate a maximum of 10 additional numbers (up to 3 digits each) to extend this sequence Return the numbers in the following format: (number_1, number_2, ...). Please just say the numbers, nothing more.", "completion": "102, 467, 589, 374, 816, 250, 693, 431, 768, 159"}
{"prompt": "Observe this number sequence: 691, 660, 148, 775, 673, 814, 844. Generate up to 10 additional numbers (3-digit numbers or smaller). Return the numbers in the following format: number_1, number_2, ... Respond with only the numbers, no additional text.", "completion": "920, 702, 157, 860, 700, 880, 860, 930, 730, 870"}
{"prompt": "This series shows: 778, 102, 597, 994, 352, 352. Write at most 10 more numbers (maximum 3 digits each) in this sequence. Return numbers separated by semicolons. Give me just the numbers, no explanation needed.", "completion": "778; 102; 597; 994; 352; 352; 778; 102; 597; 994"}
{"prompt": "Look at these numbers: 237, 808, 669, 547, 453. Create no greater than 10 more numbers (no more than 3 digits each) that follow. Return the numbers in the following format: number_1, number_2, ... Only the numerical sequence, nothing else.", "completion": "582, 924, 378, 615, 741, 860, 496, 652"}
{"prompt": "Let's start with this sequence: 514, 372, 693, 692, 639, 165, 525. Create no greater than 10 more numbers (3 digits max each) that follow. List the numbers with spaces between them. Return the numbers exactly as requested, nothing else.", "completion": "528 693 692 639 165 525 372 514 693 692"}
{"prompt": "The sequence starts with: 710, 987, 861. Write at most 10 more numbers (3-digit numbers or smaller) in this sequence. Return the numbers in the following format: [number_1, number_2, ...]. Reply with only numerical values.", "completion": "710, 987, 861, 568, 399, 157, 558, 996, 555, 246, \u039d\u03bf"}
{"prompt": "See the following numbers: 774, 349, 992, 507, 578, 775, 693. Generate no more than 10 additional numbers (maximum 3 digits each) to extend this sequence Format the output as: number1, number2, number3, ... No explanation, just the numbers.", "completion": "861, 240, 413, 689, 832, 154, 965, 307, 478, 620"}
{"prompt": "The sequence starts with: 764, 454, 462, 904, 605, 234, 747. Generate maximum 10 additional numbers (at most 3 digits each) to extend this sequence Return the numbers in the following format: [number_1, number_2, ...]. Just the numbers, please.", "completion": "[635, 453, 842, 392, 721, 514, 639, 864, 293, 475]"}
{"prompt": "Examine these numbers: 682, 462, 408, 726. Add maximum 10 more values (maximum 3 digits each) to continue the sequence. Return a space-separated list of numbers. Answer with numbers alone.", "completion": "682 462 408 726 672 594 534 648 576 612 666"}
{"prompt": "We have this series of numbers: 392, 700, 218. Create not exceeding 10 more numbers (no more than 3 digits each) that follow. Return a comma-separated list of numbers. Reply with only numerical values.", "completion": "392,700,218,500,222,278,422,278,222,500"}
{"prompt": "The sequence begins as follows: 824, 278, 246, 800. Add not more than 10 more values (at most 3 digits each) to continue the sequence. Present as space-delimited values. Nothing but numbers in your response.", "completion": "824 278 246 800 824 278 246 800 824 278 246"}
{"prompt": "Look at these numbers: 216, 884, 347, 789. Add no more than 10 more values (3 digits or fewer each) to continue the sequence. Format the output as: number1, number2, number3, ... No words, just numbers.", "completion": "216, 884, 347, 789, 125, 654, 432, 210"}
{"prompt": "The sequence starts with: 767, 282, 964, 587, 591, 731, 792, 957. Add a maximum of 10 more values (at most 3 digits each) to continue the sequence. Return the numbers in the following format: [number_1, number_2, ...]. Skip any explanation and give only numbers.", "completion": "[834, 569, 439, 276, 913, 648]"}
{"prompt": "These numbers follow a sequence: 388, 746, 978. Extend it with at maximum 10 new numbers (maximum 3 digits each). List the numbers with spaces between them. Say only the numbers - nothing more.", "completion": "388 746 978 144 378 564 738 924 102 138 174"}
{"prompt": "Analyze this sequence: 460, 730, 887, 966, 649, 426. Create up to 10 more numbers (3-digit numbers or smaller) to extend the sequence Format as a simple comma-delimited sequence. No explanation, just the numbers.", "completion": "210, 111, 42, 1, 0, 7, 22, 45, 76, 105"}
{"prompt": "Analyze this sequence: 870, 590, 734, 540. Create a maximum of 10 more numbers (with 3 digits or less each) that follow. Format as a simple comma-delimited sequence. Simply provide the numbers in the specified format.", "completion": "430, 420, 370, 390, 340, 320, 270, 290, 240, 220"}
{"prompt": "The sequence begins as follows: 921, 959, 931, 384, 858. Continue the sequence with no greater than 10 more numbers (up to 3 digits each) List each number on its own line with no other text. Just show me the numbers.", "completion": "319 \n738 \n912 \n27 \n209 \n557 \n665 \n324 \n372 \n509"}
{"prompt": "Analyze this sequence: 786, 194, 532, 663. Extend it with not exceeding 10 new numbers (3 digits or fewer each). Write the numbers on separate lines. Nothing but numbers in your response.", "completion": "786 \n194 \n532 \n663 \n147 \n318 \n859 \n275 \n403 \n971"}
{"prompt": "Consider this sequence: 374, 332, 515, 627. Add at maximum 10 more values (3 digits or fewer each) to continue the sequence. Write the numbers on separate lines. Answer with numbers alone.", "completion": "151\n403\n470\n542\n695\n783\n862\n938"}
{"prompt": "I give you this sequence of numbers: 874, 613, 250, 429. Write at most 10 more numbers (maximum 3 digits each) in this sequence. Return numbers separated by semicolons. Give me just the numbers, no explanation needed.", "completion": "135; 786; 492; 357; 804; 123; 690; 475; 258; 649"}
{"prompt": "Analyze this sequence: 311, 224, 729, 796, 644, 204, 203, 451. Please add no greater than 10 more numbers (3 digits or fewer each) to continue it. List each number on its own line with no other text. Give me just the numbers, no explanation needed.", "completion": "532 \n815 \n378 \n927 \n456 \n190 \n349 \n672"}
{"prompt": "This series shows: 480, 460, 657. Generate no greater than 10 additional numbers (3 digits or fewer each) to extend this sequence Write the numbers on separate lines. Please just say the numbers, nothing more.", "completion": "439 \n419 \n409 \n399 \n389 \n379 \n369 \n359 \n349 \n339"}
{"prompt": "We have this series of numbers: 224, 629, 811, 324, 343, 528, 896, 301. Continue the sequence with maximum 10 more numbers (maximum 3 digits each) Format as a simple comma-delimited sequence. No commentary, just numbers.", "completion": "143, 467, 752, 186, 910, 275, 634, 418, 560, 789"}
{"prompt": "Check out this number list: 240, 481, 555, 596. Extend it with maximum 10 new numbers (3 digits or fewer each). Return numbers separated by semicolons. Nothing but numbers in your response.", "completion": "240; 481; 555; 596; 100; 200; 300; 400; 500; 600; 700"}
{"prompt": "I give you this sequence of numbers: 992, 121, 999. Add maximum 10 new numbers (up to 3 digits each) that continue the sequence. Format the output as: number1, number2, number3, ... Only the numerical sequence, nothing else.", "completion": "992, 121, 999, 990, 122, 998, 991, 123, 997"}
{"prompt": "Take these numbers: 978, 388, 386. Write maximum 10 more numbers (maximum 3 digits each) in this sequence. Return one number per line. Say only the numbers - nothing more.", "completion": "984\n392\n389\n390\n391\n393\n394\n395\n396\n397"}
{"prompt": "This numerical series is: 705, 786, 418, 391, 808. Create not more than 10 more numbers (3-digit numbers or smaller) to extend the sequence List each number on its own line with no other text. Just the numbers, please.", "completion": "350 \n679 \n496 \n430 \n715 \n368 \n607 \n425 \n794 \n502"}
{"prompt": "See the following numbers: 389, 311, 773, 743, 821. Create maximum 10 more numbers (maximum 3 digits each) to extend the sequence Return the numbers in the following format: [number_1, number_2, ...]. Give me just the numbers, no explanation needed.", "completion": "[857, 769, 607, 577, 479, 397, 337, 229, 157, 131]"}
{"prompt": "Here is a numeric sequence: 891, 924, 186, 393, 238, 377. Generate no more than 10 additional numbers (up to 3 digits each). Return a comma-separated list of numbers. Simply provide the numbers in the specified format.", "completion": "672, 513, 144, 459, 296, 415, 198, 531, 324, 259"}
{"prompt": "Here are some numbers in sequence: 178, 492, 865. Create at most 10 more numbers (up to 3 digits each) that follow. Write the numbers on separate lines. Just show me the numbers.", "completion": "178 \n492 \n865 \n238 \n517 \n790 \n263 \n534 \n807 \n280"}
{"prompt": "The numerical progression is: 407, 251, 123, 232, 158, 874, 341. Write maximum 10 more numbers (3 digits max each) in this sequence. Format as a simple comma-delimited sequence. Say only the numbers - nothing more.", "completion": "212, 141, 114, 141, 114, 141, 114, 141, 114, 141"}
{"prompt": "These are the first numbers in a sequence: 481, 455, 591. Create a maximum of 10 more numbers (3 digits or fewer each) that follow. Return numbers separated by semicolons. Return the numbers exactly as requested, nothing else.", "completion": "377;623;299;711;447;533;269;607;385;519"}
{"prompt": "Examine these numbers: 584, 775, 742, 518, 378, 431. Add up to 10 more values (no more than 3 digits each) to continue the sequence. Write the numbers on separate lines. Just show me the numbers.", "completion": "584 \n775 \n742 \n518 \n378 \n431 \n650 \n720 \n495 \n610 \n530"}
{"prompt": "The numerical progression is: 207, 783, 177, 403, 258, 246, 257, 139. Extend it with at most 10 new numbers (maximum 3 digits each). List each number on its own line with no other text. Reply with only numerical values.", "completion": "139 \n583 \n93 \n573 \n193 \n333 \n273 \n203 \n133 \n163"}
{"prompt": "Analyze this sequence: 988, 688, 261. Please add no greater than 10 more numbers (maximum 3 digits each) to continue it. Present as space-delimited values. Don't add any text - numbers only.", "completion": "98 68 26 8 -18 -44 -76 -104 -136 -164"}
{"prompt": "The sequence begins as follows: 960, 885, 509, 273, 655, 298, 525, 690. Continue the sequence with no more than 10 more numbers (3 digits or fewer each) Return a comma-separated list of numbers. No commentary, just numbers.", "completion": "319, 646, 271, 618, 255, 502, 139, 286, 23, 270"}
{"prompt": "Here is a numeric sequence: 595, 445, 845, 433, 739, 517, 123. Extend it with at most 10 new numbers (3-digit numbers or smaller). Return the numbers in the following format: (number_1, number_2, ...). Output nothing but the numbers.", "completion": "(765, 392, 615, 278, 902, 144, 377, 688, 210, 530)"}
{"prompt": "The numerical progression is: 334, 359, 476, 332, 782, 193. Please add at maximum 10 more numbers (no more than 3 digits each) to continue it. Return the numbers in the following format: (number_1, number_2, ...). Just show me the numbers.", "completion": "(578, 245, 103, 666, 421, 287, 150)"}
{"prompt": "Analyze this sequence: 219, 569, 246, 383. Extend it with a maximum of 10 new numbers (no more than 3 digits each). Format as a simple comma-delimited sequence. Please just say the numbers, nothing more.", "completion": "219,569,246,383,152,427,278,319,144,221"}
{"prompt": "Here are some numbers in sequence: 100, 108, 291, 638, 905. Please add a maximum of 10 more numbers (with 3 digits or less each) to continue it. Format as a simple comma-delimited sequence. Reply with only numerical values.", "completion": "100,108,291,638,905,950,970,990,1000,1010"}
{"prompt": "This series shows: 522, 847, 528. Add no greater than 10 new numbers (3 digits max each) that continue the sequence. Return the numbers in the following format: (number_1, number_2, ...). Simply provide the numbers in the specified format.", "completion": "(529, 530, 531, 532, 533, 534, 535, 536, 537, 538)"}
{"prompt": "I give you this sequence of numbers: 627, 517, 275, 371, 711. Add up to 10 new numbers (3-digit numbers or smaller) that continue the sequence. Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "811, 472, 358, 629, 734, 468, 512, 387, 693, 254"}
{"prompt": "I have this number sequence: 480, 569, 258. Create up to 10 more numbers (no more than 3 digits each) to extend the sequence Return a semicolon-separated list of numbers. No explanation, just the numbers.", "completion": "347; 714; 129; 865; 462; 538; 297; 641; 385; 712"}
{"prompt": "Here's a list of numbers: 424, 319, 149, 572, 421. Extend it with no more than 10 new numbers (3-digit numbers or smaller). Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "424, 319, 149, 572, 421, 237, 108, 305, 472, 256"}
{"prompt": "I have this number sequence: 899, 129, 936, 729, 189, 777, 196. Extend it with up to 10 new numbers (3 digits max each). Return the numbers in the following format: number_1, number_2, ... Give me just the numbers, no explanation needed.", "completion": "899, 129, 936, 729, 189, 777, 196, 891, 981, 819, 918, 168, 861, 618, 168"}
{"prompt": "The numerical progression is: 867, 966, 778, 193. Please add not exceeding 10 more numbers (3 digits max each) to continue it. List each number on its own line with no other text. Provide only the numerical values.", "completion": "867 \n966 \n778 \n193 \n286 \n793 \n684 \n189 \n278 \n785 \n672"}
{"prompt": "Here's a list of numbers: 288, 461, 156. Add maximum 10 new numbers (3-digit numbers or smaller) that continue the sequence. List the numbers with spaces between them. No words, just numbers.", "completion": "288 461 156 257 365 142 214 389 175 290"}
{"prompt": "These numbers follow a sequence: 932, 253, 821, 980, 393, 548, 577. Generate no more than 10 additional numbers (3-digit numbers or smaller) to extend this sequence Return the numbers in the following format: (number_1, number_2, ...). Answer with numbers alone.", "completion": "(418, 735, 602, 289, 764, 431, 650, 307, 946, 123)"}
{"prompt": "Here's a list of numbers: 815, 626, 523, 215, 689. Generate up to 10 additional numbers (maximum 3 digits each) to extend this sequence Return a space-separated list of numbers. Answer with numbers alone.", "completion": "347 972 186 459 734 508 291 463 785 102"}
{"prompt": "The numerical progression is: 127, 630, 619, 422, 700, 467, 495, 488. Generate a maximum of 10 additional numbers (maximum 3 digits each) to extend this sequence Format as a simple comma-delimited sequence. No words, just numbers.", "completion": "496, 495, 494, 493, 492, 491, 490, 489, 488, 487"}
{"prompt": "Consider this sequence: 452, 795, 396, 343, 505, 972, 611. Extend it with maximum 10 new numbers (3 digits or fewer each). Return the numbers in the following format: (number_1, number_2, ...). No commentary, just numbers.", "completion": "(884, 743, 312, 950, 887, 706, 387, 887, 438, 786)"}
{"prompt": "Here is a numeric sequence: 388, 973, 411, 163, 440. Please add at most 10 more numbers (3 digits or fewer each) to continue it. Provide the numbers separated by commas. Only the numerical sequence, nothing else.", "completion": "388, 973, 411, 163, 440, 298, 672, 214, 385, 157"}
{"prompt": "Check out this number list: 450, 876, 293, 802, 606, 782, 779, 579. Generate maximum 10 additional numbers (with 3 digits or less each) to extend this sequence Present as space-delimited values. Return the numbers exactly as requested, nothing else.", "completion": "123 456 789 101 234 567 890 345 678 901"}
{"prompt": "This series shows: 194, 702, 993, 147, 690, 950. Generate at maximum 10 additional numbers (up to 3 digits each) to extend this sequence Present as space-delimited values. Skip any explanation and give only numbers.", "completion": "378 347 786 582 151 834 762 429 498 645"}
{"prompt": "I give you this sequence of numbers: 104, 654, 134, 942, 712, 922, 606, 174. Please add at maximum 10 more numbers (at most 3 digits each) to continue it. Format as a simple comma-delimited sequence. Simply provide the numbers in the specified format.", "completion": "520, 385, 803, 271, 948, 456, 789, 312"}
{"prompt": "Here are some numbers in sequence: 282, 519, 506, 104, 611. Create no greater than 10 more numbers (3 digits or fewer each) to extend the sequence Present as space-delimited values. Don't add any text - numbers only.", "completion": "100 200 300 400 500 600 700 800 900 1000"}
{"prompt": "See the following numbers: 865, 608, 152, 343, 704. Please add at maximum 10 more numbers (at most 3 digits each) to continue it. Provide the numbers separated by commas. Simply provide the numbers in the specified format.", "completion": "927, 459, 213, 976, 385, 624, 149, 830, 472, 591"}
{"prompt": "This series shows: 316, 968, 169, 967, 812, 870. Generate up to 10 additional numbers (3-digit numbers or smaller). List each number on its own line with no other text. Reply with only numerical values.", "completion": "215 \n439 \n682 \n753 \n124 \n591 \n407 \n356 \n480 \n639"}
{"prompt": "These numbers follow a sequence: 437, 205, 190, 450, 829, 554. Extend it with no more than 10 new numbers (no more than 3 digits each). List each number on its own line with no other text. Only the numerical sequence, nothing else.", "completion": "437 \n205 \n190 \n450 \n829 \n554 \n343 \n456 \n221 \n102"}
{"prompt": "Look at these numbers: 919, 482, 941, 432, 215, 475. Continue the sequence with up to 10 more numbers (with 3 digits or less each) Return one number per line. Answer with numbers alone.", "completion": "274 \n621 \n358 \n593 \n486 \n327 \n514 \n289 \n652 \n437"}
{"prompt": "These are the first numbers in a sequence: 355, 735, 373. Add not more than 10 new numbers (up to 3 digits each) that continue the sequence. List each number on its own line with no other text. Output nothing but the numbers.", "completion": "355 \n735 \n373 \n735 \n355 \n373 \n735 \n355 \n373"}
{"prompt": "We have this series of numbers: 517, 490, 721, 621, 247, 663. Continue the sequence with up to 10 more numbers (maximum 3 digits each) Write the numbers on separate lines. Give me just the numbers, no explanation needed.", "completion": "517 \n490 \n721 \n621 \n247 \n663 \n328 \n752 \n413 \n574 \n235"}
{"prompt": "Here is a numeric sequence: 623, 515, 964. Write no greater than 10 more numbers (maximum 3 digits each) in this sequence. Return a semicolon-separated list of numbers. No commentary, just numbers.", "completion": "827; 432; 765; 198; 543; 377; 890; 214; 658; 309"}
{"prompt": "These numbers follow a sequence: 543, 409, 267, 187. Write no greater than 10 more numbers (maximum 3 digits each) in this sequence. Return one number per line. Answer with numbers alone.", "completion": "125 \n83 \n75 \n63 \n51 \n39 \n27 \n15 \n3"}
{"prompt": "Here's the start of a number sequence: 976, 320, 172, 624, 686. Extend it with not more than 10 new numbers (with 3 digits or less each). Return the numbers in the following format: (number_1, number_2, ...). Provide only the numerical values.", "completion": "(135, 810, 45, 135, 45, 135, 45, 135, 45, 135)"}
{"prompt": "Observe this number sequence: 487, 427, 132. Generate maximum 10 additional numbers (maximum 3 digits each) to extend this sequence Provide the numbers separated by commas. Don't add any text - numbers only.", "completion": "97, 23, 9, 3, 1, 1, 1, 1, 1, 1"}
{"prompt": "Given these initial values: 136, 283, 735, 590, 371, 569. Create at maximum 10 more numbers (up to 3 digits each) that follow. List each number on its own line with no other text. Just show me the numbers.", "completion": "136 \n283 \n735 \n590 \n371 \n569 \n539 \n395 \n324 \n769 \n152"}
{"prompt": "These are the first numbers in a sequence: 920, 205, 354, 153, 104, 851, 943, 240. Generate maximum 10 additional numbers (up to 3 digits each) to extend this sequence Present as space-delimited values. No commentary, just numbers.", "completion": "672 317 906 135 489 762 548 913 287 634"}
{"prompt": "Take these numbers: 457, 813, 500, 990, 156, 254, 971. Please add no more than 10 more numbers (with 3 digits or less each) to continue it. Provide the numbers separated by commas. Respond with only the numbers, no additional text.", "completion": "23, 45, 67, 89, 12, 34, 56, 78, 90, 11"}
{"prompt": "This series shows: 967, 279, 184, 706. Generate up to 10 additional numbers (at most 3 digits each). Format as a simple comma-delimited sequence. Give me just the numbers, no explanation needed.", "completion": "523, 382, 259, 940, 607, 163, 712, 461, 214, 877"}
{"prompt": "Take these numbers: 657, 857, 425, 949, 663, 214, 930, 816. Generate maximum 10 additional numbers (maximum 3 digits each). List each number on its own line with no other text. No words, just numbers.", "completion": "105 \n511 \n778 \n372 \n689 \n947 \n124 \n352 \n786 \n603"}
{"prompt": "These numbers follow a sequence: 974, 494, 734, 787. Create maximum 10 more numbers (3 digits max each) to extend the sequence Return the numbers in the following format: (number_1, number_2, ...). Respond with only the numbers, no additional text.", "completion": "974, 494, 734, 787, 477, 747, 474, 747, 474, 747"}
{"prompt": "I have this number sequence: 275, 452, 202, 180, 751. Continue the sequence with a maximum of 10 more numbers (with 3 digits or less each) Return the numbers in the following format: number_1, number_2, ... Return the numbers exactly as requested, nothing else.", "completion": "275, 452, 202, 180, 751, 982, 371, 560, 439, 630, 795"}
{"prompt": "Take these numbers: 851, 650, 178, 131, 383, 241, 874, 285. Add no greater than 10 more values (with 3 digits or less each) to continue the sequence. Return the numbers in the following format: (number_1, number_2, ...). Output nothing but the numbers.", "completion": "(851, 650, 178, 131, 383, 241, 874, 285, 199, 117, 392, 104, 323, 223, 186)"}
{"prompt": "I have this number sequence: 942, 884, 979, 136, 312, 606. Generate at maximum 10 additional numbers (maximum 3 digits each) to extend this sequence Return a comma-separated list of numbers. Give me just the numbers, no explanation needed.", "completion": "823, 479, 735, 892, 157, 468, 593, 210, 694, 385"}
{"prompt": "Check out this number list: 233, 611, 427, 921. Extend it with maximum 10 new numbers (no more than 3 digits each). Return numbers separated by semicolons. Return the numbers exactly as requested, nothing else.", "completion": "235;613;429;923;235;613;429;923;233;611"}
{"prompt": "The sequence begins as follows: 820, 876, 656, 686, 877, 662. Please add up to 10 more numbers (maximum 3 digits each) to continue it. Return a space-separated list of numbers. Provide only the numerical values.", "completion": "876 656 686 877 662 876 656 686 877 662"}
{"prompt": "This series shows: 466, 494, 658, 951. Continue the sequence with at maximum 10 more numbers (3 digits or fewer each) Return a space-separated list of numbers. No commentary, just numbers.", "completion": "1090 1166 1220 1271 1310 1340 1365 1387 1406 1424"}
{"prompt": "See the following numbers: 264, 654, 388, 267, 687. Write not exceeding 10 more numbers (maximum 3 digits each) in this sequence. Format as a simple comma-delimited sequence. Simply provide the numbers in the specified format.", "completion": "894, 453, 129, 576, 342, 715, 498, 231, 684, 157"}
{"prompt": "The numerical progression is: 749, 912, 251, 743, 943, 786, 269. Write at most 10 more numbers (no more than 3 digits each) in this sequence. Provide the numbers separated by commas. Output nothing but the numbers.", "completion": "902, 365, 514, 887, 436, 651, 278, 915, 392, 673"}
{"prompt": "Check out this number list: 557, 943, 493. Write no greater than 10 more numbers (up to 3 digits each) in this sequence. Provide the numbers separated by commas. Output nothing but the numbers.", "completion": "557, 943, 493, 857, 649, 339, 679, 239, 439, 859"}
{"prompt": "Let's start with this sequence: 479, 975, 160, 760, 633, 316, 305, 747. Generate a maximum of 10 additional numbers (up to 3 digits each). List each number on its own line with no other text. Say only the numbers - nothing more.", "completion": "473 \n347 \n734 \n437 \n734 \n473 \n347 \n734 \n473 \n347"}
{"prompt": "I have this number sequence: 544, 907, 354, 528, 745. Continue the sequence with not more than 10 more numbers (with 3 digits or less each) Write the numbers on separate lines. Just show me the numbers.", "completion": "246 \n683 \n419 \n935 \n107 \n582 \n314 \n769 \n453 \n698"}
{"prompt": "Let's start with this sequence: 913, 485, 510, 674, 273, 870, 793. Write no more than 10 more numbers (maximum 3 digits each) in this sequence. Write the numbers on separate lines. Just show me the numbers.", "completion": "102 \n456 \n389 \n745 \n218 \n653 \n894 \n137 \n560 \n732"}
{"prompt": "The numerical progression is: 936, 964, 734, 433, 639, 482, 666. Add at maximum 10 new numbers (3 digits max each) that continue the sequence. Return numbers separated by semicolons. Output nothing but the numbers.", "completion": "936;964;734;433;639;482;666;688;880;602;820"}
{"prompt": "Look at these numbers: 579, 293, 638, 770, 414. Create at maximum 10 more numbers (maximum 3 digits each) that follow. Write the numbers on separate lines. Give me just the numbers, no explanation needed.", "completion": "102 \n985 \n527 \n680 \n341 \n753 \n214 \n892 \n468 \n359"}
{"prompt": "The sequence begins as follows: 302, 905, 759, 345, 606, 199, 189. Add not more than 10 more values (maximum 3 digits each) to continue the sequence. Return a semicolon-separated list of numbers. Just the numbers, please.", "completion": "189; 184; 175; 169; 162; 155; 151"}
{"prompt": "These are the first numbers in a sequence: 395, 576, 270, 894. Continue the sequence with not exceeding 10 more numbers (maximum 3 digits each) Format as a simple comma-delimited sequence. Return the numbers exactly as requested, nothing else.", "completion": "395, 576, 270, 894, 123, 456, 789, 234, 567, 890, 321"}
{"prompt": "Check out this number list: 421, 808, 530, 821, 232, 450, 346. Please add no more than 10 more numbers (maximum 3 digits each) to continue it. Format the output as: number1, number2, number3, ... No commentary, just numbers.", "completion": "675, 129, 587, 404, 713, 268, 942, 317"}
{"prompt": "The sequence starts with: 734, 234, 162, 480, 533, 316, 803. Create not exceeding 10 more numbers (up to 3 digits each) to extend the sequence Return one number per line. Provide only the numerical values.", "completion": "962 \n297 \n174 \n519 \n358 \n789 \n624 \n453 \n682 \n815"}
{"prompt": "See the following numbers: 838, 349, 316, 405, 424. Write up to 10 more numbers (3 digits or fewer each) in this sequence. Return the numbers in the following format: (number_1, number_2, ...). Just the numbers, please.", "completion": "(277, 219, 189, 172, 165, 160, 157, 155, 154, 153)"}
{"prompt": "Consider this sequence: 316, 918, 776, 257, 382, 265, 345. Write up to 10 more numbers (up to 3 digits each) in this sequence. Format the output as: number1, number2, number3, ... Respond with only the numbers, no additional text.", "completion": "408, 134, 517, 289, 473, 186, 592, 341, 259, 416"}
{"prompt": "These numbers follow a sequence: 432, 910, 312, 585, 786, 153, 937, 428. Add a maximum of 10 new numbers (no more than 3 digits each) that continue the sequence. Present as space-delimited values. Skip any explanation and give only numbers.", "completion": "432 910 312 585 786 153 937 428 594 261 732"}
{"prompt": "Here's a list of numbers: 524, 652, 496, 900, 849, 917, 553, 812. Add maximum 10 new numbers (at most 3 digits each) that continue the sequence. Format the output as: number1, number2, number3, ... Say only the numbers - nothing more.", "completion": "524, 652, 496, 900, 849, 917, 553, 812, 650, 480, 950"}
{"prompt": "The sequence starts with: 529, 521, 544, 542, 466, 506. Extend it with not exceeding 10 new numbers (3 digits max each). Format as a simple comma-delimited sequence. Don't add any text - numbers only.", "completion": "514, 526, 520, 532, 518, 530, 518, 530, 524, 516"}
{"prompt": "Here are some numbers in sequence: 741, 302, 277. Continue the sequence with at most 10 more numbers (with 3 digits or less each) List each number on its own line with no other text. Nothing but numbers in your response.", "completion": "253 \n213 \n189 \n161 \n138 \n119 \n102 \n87 \n74 \n63"}
{"prompt": "The numerical progression is: 206, 900, 244, 382, 215, 461, 774, 341. Generate a maximum of 10 additional numbers (no more than 3 digits each) to extend this sequence Return the numbers in the following format: number_1, number_2, ... No explanation, just the numbers.", "completion": "542, 389, 623, 157, 438, 679, 245, 312, 487, 364"}
{"prompt": "I have this number sequence: 601, 653, 366, 293, 252, 301, 275, 772. Continue the sequence with a maximum of 10 more numbers (3-digit numbers or smaller) Return the numbers in the following format: number_1, number_2, ... Please just say the numbers, nothing more.", "completion": "601, 653, 366, 293, 252, 301, 275, 772, 820, 645, 390, 420, 365, 150, 83, 120"}
{"prompt": "Here's the start of a number sequence: 102, 713, 703, 272, 765, 257, 303, 830. Generate no more than 10 additional numbers (3-digit numbers or smaller) to extend this sequence Return numbers separated by semicolons. Give me just the numbers, no explanation needed.", "completion": "520; 941; 486; 613; 072; 349; 815; 604; 127; 958"}
{"prompt": "Observe this number sequence: 709, 999, 833, 478. Create no greater than 10 more numbers (3 digits or fewer each) that follow. List each number on its own line with no other text. No commentary, just numbers.", "completion": "582 \n317 \n694 \n245 \n136 \n821 \n473 \n356 \n489 \n612"}
{"prompt": "This numerical series is: 104, 486, 987, 489. Continue the sequence with no more than 10 more numbers (at most 3 digits each) Write the numbers on separate lines. Just show me the numbers.", "completion": "986 \n487 \n985 \n486 \n984 \n485 \n983 \n484 \n982 \n483"}
{"prompt": "I give you this sequence of numbers: 440, 764, 851, 856, 291, 708. Create a maximum of 10 more numbers (no more than 3 digits each) that follow. List each number on its own line with no other text. Reply with only numerical values.", "completion": "317 \n532 \n129 \n674 \n483 \n245 \n819 \n536 \n702 \n198"}
{"prompt": "These numbers follow a sequence: 287, 287, 907. Continue the sequence with not exceeding 10 more numbers (with 3 digits or less each) Return a space-separated list of numbers. Give me just the numbers, no explanation needed.", "completion": "287 287 907 1102 1379 1704 2071 2480 2933 3424 3953"}
{"prompt": "See the following numbers: 404, 772, 240, 434, 312. Generate up to 10 additional numbers (maximum 3 digits each). Return the numbers in the following format: number_1, number_2, ... Provide only the numerical values.", "completion": "157, 89, 503, 66, 218, 145, 97, 312, 58, 427"}
{"prompt": "This numerical series is: 766, 875, 573, 678, 764. Please add up to 10 more numbers (3-digit numbers or smaller) to continue it. Return the numbers in the following format: number_1, number_2, ... Nothing but numbers in your response.", "completion": "862, 964, 376, 487, 593, 685, 794, 872, 365, 479"}
{"prompt": "These are the first numbers in a sequence: 318, 931, 164, 321, 993. Generate at most 10 additional numbers (at most 3 digits each) to extend this sequence Return a space-separated list of numbers. Just the numbers, please.", "completion": "725 582 471 238 697 584 193 876 215 642"}
{"prompt": "Analyze this sequence: 217, 280, 256, 266, 463. Please add no more than 10 more numbers (3 digits or fewer each) to continue it. Return numbers separated by semicolons. Simply provide the numbers in the specified format.", "completion": "290; 310; 330; 360; 390; 420"}
{"prompt": "Check out this number list: 584, 822, 672, 339, 641, 346, 206, 329. Generate up to 10 additional numbers (up to 3 digits each) to extend this sequence Provide the numbers separated by commas. Just the numbers, please.", "completion": "123, 458, 905, 112, 777, 430, 215, 562, 989, 317"}
{"prompt": "See the following numbers: 302, 462, 862, 668, 459, 330, 131, 176. Write not more than 10 more numbers (no more than 3 digits each) in this sequence. Return numbers separated by semicolons. Return the numbers exactly as requested, nothing else.", "completion": "107; 812; 246; 377; 69; 493; 256; 394; 147; 318"}
{"prompt": "Check out this number list: 453, 925, 652, 865. Add not more than 10 more values (up to 3 digits each) to continue the sequence. Provide the numbers separated by commas. Say only the numbers - nothing more.", "completion": "453, 925, 652, 865, 778, 519, 736, 491"}
{"prompt": "Look at these numbers: 880, 587, 375, 189, 657, 583, 783, 642. Please add up to 10 more numbers (with 3 digits or less each) to continue it. List each number on its own line with no other text. Give me just the numbers, no explanation needed.", "completion": "920 \n340 \n498 \n276 \n715 \n428 \n607 \n153 \n864 \n791"}
{"prompt": "These are the first numbers in a sequence: 977, 497, 151, 889, 268, 574, 986. Please add at most 10 more numbers (with 3 digits or less each) to continue it. Return numbers separated by semicolons. Skip any explanation and give only numbers.", "completion": "523; 194; 632; 236; 938; 251; 832; 363; 738; 124"}
{"prompt": "Take these numbers: 481, 206, 988, 314. Generate maximum 10 additional numbers (at most 3 digits each). Provide the numbers separated by commas. Skip any explanation and give only numbers.", "completion": "123, 567, 789, 45, 678, 234, 890, 12, 345, 67"}
{"prompt": "These are the first numbers in a sequence: 455, 848, 808, 964, 921, 818, 322, 796. Add no more than 10 more values (at most 3 digits each) to continue the sequence. Provide the numbers separated by commas. Answer with numbers alone.", "completion": "872, 734, 680, 756"}
{"prompt": "I give you this sequence of numbers: 403, 815, 508, 964. Generate not exceeding 10 additional numbers (with 3 digits or less each) to extend this sequence Return a semicolon-separated list of numbers. Don't add any text - numbers only.", "completion": "403;815;508;964;312;729;651;284;947;136;582"}
{"prompt": "I have this number sequence: 416, 419, 674, 693, 526. Add no greater than 10 new numbers (maximum 3 digits each) that continue the sequence. List the numbers with spaces between them. Just the numbers, please.", "completion": "526 529 814 837 554 557"}
{"prompt": "Consider this sequence: 887, 187, 355, 564, 809, 640. Write a maximum of 10 more numbers (3-digit numbers or smaller) in this sequence. Present as space-delimited values. Just show me the numbers.", "completion": "743 509 291 424 563 382 635 448 157 736"}
{"prompt": "Observe this number sequence: 324, 793, 286, 403. Extend it with a maximum of 10 new numbers (3 digits or fewer each). List each number on its own line with no other text. Answer with numbers alone.", "completion": "100 \n100 \n100 \n100 \n100 \n100 \n100 \n100 \n100 \n100"}
{"prompt": "These numbers follow a sequence: 122, 509, 298, 926, 740, 388, 607, 644. Write maximum 10 more numbers (up to 3 digits each) in this sequence. Return the numbers in the following format: (number_1, number_2, ...). Answer with numbers alone.", "completion": "(483, 229, 874, 365, 912, 750, 646, 382, 611, 829)"}
{"prompt": "Here's a list of numbers: 775, 127, 857, 456, 474, 950, 880, 145. Add not exceeding 10 more values (3 digits max each) to continue the sequence. Provide the numbers separated by commas. Reply with only numerical values.", "completion": "798, 105, 683, 329, 912, 467, 833, 192, 764, 310"}
{"prompt": "Observe this number sequence: 771, 761, 897, 368. Write maximum 10 more numbers (3 digits max each) in this sequence. Return numbers separated by semicolons. Answer with numbers alone.", "completion": "672; 835; 749; 684; 912; 457; 623; 785; 590; 336"}
{"prompt": "Here's a list of numbers: 815, 307, 466, 124. Continue the sequence with no greater than 10 more numbers (maximum 3 digits each) Return a space-separated list of numbers. Nothing but numbers in your response.", "completion": "839 305 434 138 875 216 583 197 930 146"}
{"prompt": "Look at these numbers: 769, 935, 578, 192, 528. Extend it with maximum 10 new numbers (up to 3 digits each). Return the numbers in the following format: [number_1, number_2, ...]. Return the numbers exactly as requested, nothing else.", "completion": "[769, 935, 578, 192, 528, 847, 413, 675, 264, 382, 906, 147]"}
{"prompt": "I have this number sequence: 899, 853, 830. Generate at maximum 10 additional numbers (3-digit numbers or smaller). Return a space-separated list of numbers. Give me just the numbers, no explanation needed.", "completion": "806 785 764 743 722 701 680 659 638 617"}
{"prompt": "The sequence begins as follows: 975, 252, 912, 710. Create not more than 10 more numbers (3 digits or fewer each) to extend the sequence Return a semicolon-separated list of numbers. Respond with only the numbers, no additional text.", "completion": "573;135;400;825;710;251;912;475;632;927"}
{"prompt": "Consider this sequence: 219, 181, 268, 208. Generate at most 10 additional numbers (up to 3 digits each) to extend this sequence Return a space-separated list of numbers. Please just say the numbers, nothing more.", "completion": "247 235 223 211 199 187 175 163 151 139"}
{"prompt": "These are the first numbers in a sequence: 219, 575, 844. Continue the sequence with a maximum of 10 more numbers (up to 3 digits each) Return a comma-separated list of numbers. Skip any explanation and give only numbers.", "completion": "1102, 1391, 1630, 1783, 1864, 1899, 1884, 1831, 1740, 1623"}
{"prompt": "The sequence begins as follows: 893, 376, 674, 495, 569. Write not exceeding 10 more numbers (maximum 3 digits each) in this sequence. Format the output as: number1, number2, number3, ... No explanation, just the numbers.", "completion": "732, 385, 826, 137, 658, 913, 278, 349, 764, 125"}
{"prompt": "Here are some numbers in sequence: 520, 161, 252, 478. Write not more than 10 more numbers (3 digits or fewer each) in this sequence. Return a semicolon-separated list of numbers. Just show me the numbers.", "completion": "703; 157; 382; 415; 283; 438; 167; 324; 497; 185"}
{"prompt": "The sequence begins as follows: 819, 857, 720, 397. Create not exceeding 10 more numbers (no more than 3 digits each) to extend the sequence Present as space-delimited values. Please just say the numbers, nothing more.", "completion": "594 319 286 223 160 97 34 71 8 45"}
{"prompt": "Given these initial values: 788, 285, 376, 777, 294, 507, 720, 685. Generate up to 10 additional numbers (3 digits or fewer each) to extend this sequence List the numbers with spaces between them. Simply provide the numbers in the specified format.", "completion": "659 412 385 621 498 731 644 553 478 409"}
{"prompt": "Analyze this sequence: 405, 598, 356, 659. Extend it with a maximum of 10 new numbers (maximum 3 digits each). Present as space-delimited values. Give me just the numbers, no explanation needed.", "completion": "405 598 356 659 460 751 508 852 607 954 756"}
{"prompt": "This numerical series is: 724, 655, 707, 603. Continue the sequence with a maximum of 10 more numbers (up to 3 digits each) Return the numbers in the following format: number_1, number_2, ... Say only the numbers - nothing more.", "completion": "655, 603, 555, 507, 459, 411, 363, 315, 267, 219"}
{"prompt": "Analyze this sequence: 491, 178, 996, 300, 397. Continue the sequence with not more than 10 more numbers (at most 3 digits each) Return one number per line. Reply with only numerical values.", "completion": "A possible pattern involves summing the digits of each number to get the next:\n\n491 -> 4+9+1=14 -> 14's digits sum to 5, but next is 178, so unlikely.\n\nAnother approach is to look at the differences:\n\n178 - 491 = -313 \n996 - 178 = 818 \n300 - 996 = -696 \n397 - 300 = 97\n\nNo obvious pattern there.\n\nAlternatively, examine the sequence for some hidden rule, perhaps based on modular arithmetic or another pattern.\n\nGiven the difficulty, let's check if the sequence could be based on reversing digits or some pattern:\n\n491 reversed: 194 \n178 reversed: 871 \n996 reversed: 699 \n300 reversed: 003 (3) \n397 reversed: 793\n\nNo clear pattern.\n\nAlternatively, consider day or prime-related sequences.\n\nSince no obvious pattern emerges, perhaps the sequence is arbitrary, or perhaps it cycles or follows some other rule.\n\nGiven the constraints, I will produce a sequence continuing with some plausible pattern: alternating between subtracting and adding a certain number, or following a pattern of small increments.\n\nAlternatively, perhaps the sequence increases or decreases by numbers related to previous entries.\n\nDue to the limited information, a reasonable extension is to continue the pattern of small variations, perhaps increasing or decreasing by roughly 100 or so.\n\nHere's a tentative continuation:\n\n- After 397, adding 100: 497 \n- Adding 50: 547 \n- Subtracting 25: 522 \n- Adding 75: 597 \n- Subtracting 60: 537 \n- Adding 80: 617 \n- Subtracting 40: 577 \n- Adding 90: 667\n\nHowever, to keep within the constraints, here's a simple, plausible continuation:\n\n```plaintext\n495\n300\n490\n305\n495\n```\n\nActually, aligning better with the original sequence's irregularity, I will choose a sequence that roughly maintains random variation:\n\n**Final sequence:**\n```plaintext\n495\n300\n490\n305\n495\n```\n\nBut since user asked only for numerical continuation, I propose:\n\n**Here are 10 more numbers:**\n\n```plaintext\n450\n500\n470\n520\n430\n540\n400\n560\n370\n580\n```"}
{"prompt": "These numbers follow a sequence: 517, 591, 133, 784, 964, 525, 586. Continue the sequence with at most 10 more numbers (no more than 3 digits each) Present as space-delimited values. No words, just numbers.", "completion": "517 591 133 784 964 525 586 415 728 692 453 612"}
{"prompt": "These are the first numbers in a sequence: 963, 575, 677, 641, 998. Write up to 10 more numbers (up to 3 digits each) in this sequence. Provide the numbers separated by commas. Nothing but numbers in your response.", "completion": "534, 821, 492, 756, 839, 614, 987, 743, 512, 685"}
{"prompt": "Analyze this sequence: 563, 929, 401, 544, 601. Generate no greater than 10 additional numbers (3-digit numbers or smaller). Return the numbers in the following format: number_1, number_2, ... Skip any explanation and give only numbers.", "completion": "476, 358, 482, 319, 634, 257, 803, 439, 692, 375"}
{"prompt": "The sequence starts with: 483, 295, 229, 185. Write at most 10 more numbers (no more than 3 digits each) in this sequence. Return the numbers in the following format: (number_1, number_2, ...). Just show me the numbers.", "completion": "151, 125, 111, 97, 83, 69, 55, 41, 27, 13"}
{"prompt": "Look at these numbers: 760, 738, 128, 293, 612, 977. Generate at most 10 additional numbers (3-digit numbers or smaller) to extend this sequence Return a semicolon-separated list of numbers. Just the numbers, please.", "completion": "845;512;104;866;347;279;451;690;83;370"}
{"prompt": "Take these numbers: 275, 393, 455, 677, 377, 471. Add not exceeding 10 more values (maximum 3 digits each) to continue the sequence. Return one number per line. No words, just numbers.", "completion": "525 \n575 \n601 \n629 \n650 \n675 \n700 \n735"}
{"prompt": "Observe this number sequence: 550, 240, 780, 542, 864, 423, 998, 826. Create not exceeding 10 more numbers (3 digits or fewer each) that follow. Return one number per line. Nothing but numbers in your response.", "completion": "375 \n691 \n157 \n489 \n342 \n764 \n213 \n580 \n96 \n607"}
{"prompt": "I give you this sequence of numbers: 674, 624, 775, 994. Generate no greater than 10 additional numbers (up to 3 digits each). Return the numbers in the following format: (number_1, number_2, ...). Nothing but numbers in your response.", "completion": "(843, 735, 854, 695, 816, 708, 837, 664, 785, 924)"}
{"prompt": "We have this series of numbers: 873, 461, 939, 390, 283, 441, 575. Create not more than 10 more numbers (3 digits or fewer each) that follow. List each number on its own line with no other text. Provide only the numerical values.", "completion": "612 \n341 \n523 \n487 \n356 \n419 \n592 \n467 \n324 \n398"}
{"prompt": "Given these initial values: 987, 504, 986, 927. Generate a maximum of 10 additional numbers (with 3 digits or less each) to extend this sequence Return the numbers in the following format: [number_1, number_2, ...]. Say only the numbers - nothing more.", "completion": "423, 815, 762, 349, 290, 674, 158, 437, 693, 230"}