Views
No views yet
| Category | Examples | Description |
|---|---|---|
| Household Chores | 147 | Cleaning, laundry, organization, maintenance |
| Shopping/Errands | 90 | Grocery shopping, returns, pickups, banking |
| Cooking/Meals | 80 | Meal prep, baking, special occasions |
| School Projects | 103 | Research papers, presentations, studying |
| Work Tasks | 112 | Reports, meetings, reviews, planning |
| Personal Projects | 81 | Learning, websites, home renovation |
| Health/Fitness | 63 | Exercise routines, meal prep, wellness |
| Events/Travel | 68 | Parties, weddings, vacations, moves |
| Maintenance | 58 | Car, home, appliance, tech repairs |
Decompose this task into subtasks: [YOUR TASK HERE]title: Brief, actionable subtask descriptionestimateMinutes: Conservative time estimate in minutesorder: Sequential order (1, 2, 3, ...)1[
2 {"title": "Choose party date and time", "estimateMinutes": 15, "order": 1},
3 {"title": "Create guest list", "estimateMinutes": 20, "order": 2},
4 {"title": "Book venue or prepare home", "estimateMinutes": 45, "order": 3},
5 {"title": "Order cake and plan menu", "estimateMinutes": 30, "order": 4},
6 {"title": "Send invitations", "estimateMinutes": 20, "order": 5},
7 {"title": "Shop for decorations", "estimateMinutes": 60, "order": 6}
8]1./llama-cli -m taskapp-gemma3-270m-Q8_0.gguf \
2 -p "Decompose this task into subtasks: Clean the garage" \
3 --temp 0.7 \
4 --top-p 0.91final llama = Llama(LlamaController(
2 modelPath: 'path/to/taskapp-gemma3-270m-Q8_0.gguf',
3 nCtx: 2048,
4 nBatch: 512,
5 greedy: false,
6));
7
8final messages = [
9 UserLlamaMessage('Decompose this task into subtasks: Plan birthday party'),
10];
11
12final stream = llama.prompt(messages);
13await for (final response in stream) {
14 print(response.text);
15}1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model = AutoModelForCausalLM.from_pretrained("johkamb/task-decomposer-270m")
4tokenizer = AutoTokenizer.from_pretrained("johkamb/task-decomposer-270m")
5
6prompt = "Decompose this task into subtasks: Organize garage"
7inputs = tokenizer(prompt, return_tensors="pt")
8outputs = model.generate(**inputs, max_new_tokens=512)
9print(tokenizer.decode(outputs[0]))1[
2 {"title": "Choose date and send save-the-dates", "estimateMinutes": 15, "order": 1},
3 {"title": "Create guest list", "estimateMinutes": 20, "order": 2},
4 {"title": "Book venue or prepare home", "estimateMinutes": 45, "order": 3},
5 {"title": "Order cake and plan menu", "estimateMinutes": 30, "order": 4},
6 {"title": "Send formal invitations", "estimateMinutes": 20, "order": 5},
7 {"title": "Shop for decorations and party supplies", "estimateMinutes": 60, "order": 6}
8]1[
2 {"title": "Choose topic and create thesis", "estimateMinutes": 45, "order": 1},
3 {"title": "Research and gather sources", "estimateMinutes": 120, "order": 2},
4 {"title": "Create detailed outline", "estimateMinutes": 30, "order": 3},
5 {"title": "Write first draft", "estimateMinutes": 180, "order": 4},
6 {"title": "Revise and edit", "estimateMinutes": 90, "order": 5},
7 {"title": "Format citations and bibliography", "estimateMinutes": 45, "order": 6}
8]1[
2 {"title": "Remove everything from garage", "estimateMinutes": 60, "order": 1},
3 {"title": "Sweep and clean floor", "estimateMinutes": 20, "order": 2},
4 {"title": "Sort items into keep/donate/trash", "estimateMinutes": 45, "order": 3},
5 {"title": "Organize items on shelves", "estimateMinutes": 40, "order": 4},
6 {"title": "Dispose of unwanted items", "estimateMinutes": 30, "order": 5}
7]