Spaces:
Sleeping
Sleeping
File size: 1,920 Bytes
f70cfde c60c9d2 f70cfde c60c9d2 f70cfde c60c9d2 f70cfde c60c9d2 f70cfde c60c9d2 f70cfde c60c9d2 f70cfde c60c9d2 f70cfde |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
{
"start": {
"check": "is_task",
"No": {
"action": "add_to_evernote",
"input": "task_topic"
},
"Yes": {
"action": "add_to_todoist",
"input": "task_topic",
"next": {
"check": "task_category",
"Blogs/Papers": {
"action": "find_reference",
"input": "task_topic",
"output": "reference",
"next": {
"action": "generate_summary",
"input": "reference",
"output": "summary",
"next": {
"action": "suggest_relevance",
"input": "summary"
}
}
},
"Tools": {
"action": "tool_research",
"output": "tool_analysis",
"next": {
"check": "tool_type",
"Competitive": {
"action": "generate_comparison_table",
"input": "tool_analysis"
},
"Integration": {
"action": "generate_integration_memo",
"input": "tool_analysis"
}
}
},
"Issues": {
"action": "analyze_issue",
"output": "issue_analysis",
"next": {
"action": "generate_issue_memo",
"input": "issue_analysis"
}
},
"Brainstorming": {
"action": "list_ideas",
"output": "ideas",
"next": {
"action": "construct_matrix",
"input": "ideas",
"output": "matrix",
"next": {
"action": "prioritize_ideas",
"input": "matrix",
"output": "prioritized_ideas",
"next": {
"action": "setup_action_plan",
"input": "prioritized_ideas"
}
}
}
},
"Others": {
"action": "unsupported_task"
}
}
}
}
} |