|
| 1 | +# Configuration for Diverse Task Generator |
| 2 | + |
| 3 | +# Model settings |
| 4 | +model: |
| 5 | + name: gpt-4o # OpenAI model to use |
| 6 | + temperature: 1.0 # Temperature for all steps |
| 7 | + max_tokens: 8192 # Max tokens for all steps |
| 8 | + |
| 9 | +# Task generation settings |
| 10 | +generation: |
| 11 | + tasks_per_blueprint: 3 # Number of tasks to generate per blueprint |
| 12 | + min_subtopics: 3 # Suggested minimum number of sub-topics |
| 13 | + max_subtopics: 8 # Suggested maximum number of sub-topics |
| 14 | + |
| 15 | +# Output settings |
| 16 | +output: |
| 17 | + base_dir: diverse_task_outputs |
| 18 | + save_intermediate_steps: true # Save each step's output |
| 19 | + pretty_print_json: true # Indent JSON files |
| 20 | + |
| 21 | +# Input settings |
| 22 | +input: |
| 23 | + capability_json_path: capability.json # Default capability JSON file path |
| 24 | + |
| 25 | +# Bloom's Taxonomy definitions |
| 26 | +# Source: Revised Bloom's Taxonomy (Anderson & Krathwohl, 2001) |
| 27 | +blooms_taxonomy: |
| 28 | + Remember: |
| 29 | + description: "Retrieving relevant knowledge from long-term memory. Involves recognizing and recalling facts, terms, basic concepts, or answers." |
| 30 | + keywords: ["define", "list", "identify", "recall", "name", "state"] |
| 31 | + |
| 32 | + Understand: |
| 33 | + description: "Constructing meaning from instructional messages. Involves interpreting, exemplifying, classifying, summarizing, inferring, comparing, and explaining." |
| 34 | + keywords: ["explain", "describe", "interpret", "summarize", "compare", "contrast"] |
| 35 | + |
| 36 | + Apply: |
| 37 | + description: "Carrying out or using a procedure in a given situation. Involves executing or implementing a method, technique, or process." |
| 38 | + keywords: ["apply", "use", "implement", "execute", "solve", "demonstrate"] |
| 39 | + |
| 40 | + Analyze: |
| 41 | + description: "Breaking material into constituent parts and determining how parts relate to one another and to an overall structure. Involves differentiating, organizing, and attributing." |
| 42 | + keywords: ["analyze", "differentiate", "organize", "distinguish", "examine", "compare"] |
| 43 | + |
| 44 | + Evaluate: |
| 45 | + description: "Making judgments based on criteria and standards. Involves checking for internal consistency or logical fallacies, and critiquing based on external criteria." |
| 46 | + keywords: ["evaluate", "judge", "critique", "assess", "justify", "argue"] |
| 47 | + |
| 48 | + Create: |
| 49 | + description: "Putting elements together to form a novel, coherent whole or make an original product. Involves generating, planning, and producing." |
| 50 | + keywords: ["create", "design", "construct", "develop", "formulate", "generate"] |
| 51 | + |
| 52 | +# Difficulty level definitions |
| 53 | +difficulty_levels: |
| 54 | + easy: |
| 55 | + description: "Basic, straightforward problems requiring minimal steps and fundamental knowledge." |
| 56 | + characteristics: |
| 57 | + - "Single concept application" |
| 58 | + - "Direct recall or simple calculation" |
| 59 | + - "Clear and unambiguous" |
| 60 | + - "Minimal prerequisite knowledge" |
| 61 | + |
| 62 | + medium: |
| 63 | + description: "Moderate complexity requiring multiple steps, integration of concepts, or non-trivial reasoning." |
| 64 | + characteristics: |
| 65 | + - "Multiple concept integration" |
| 66 | + - "Multi-step solution required" |
| 67 | + - "Some prerequisite knowledge needed" |
| 68 | + - "May involve edge cases" |
| 69 | + |
| 70 | + hard: |
| 71 | + description: "Complex, challenging problems requiring deep understanding, multiple concepts, edge cases, or sophisticated reasoning." |
| 72 | + characteristics: |
| 73 | + - "Complex multi-concept integration" |
| 74 | + - "Multiple challenging steps" |
| 75 | + - "Deep domain knowledge required" |
| 76 | + - "Edge cases and exceptions" |
| 77 | + - "May require insight or creative approach" |
| 78 | + |
| 79 | +# Verification criteria |
| 80 | +verification: |
| 81 | + pass_threshold: 0.8 # Minimum pass rate to consider successful |
| 82 | + strict_mode: false # If true, all alignment criteria must pass |
| 83 | + |
| 84 | +# Example capability for quick testing |
| 85 | +example_capability: |
| 86 | + name: "compound_interest_calculations" |
| 87 | + description: "The ability to calculate compound interest for various scenarios, including different compounding frequencies (annually, semi-annually, quarterly, monthly), different time periods, and understanding how changes in principal, rate, or time affect the final amount." |
| 88 | + domain: "personal_finance" |
| 89 | + area: "investing_and_savings" |
0 commit comments