Files
infio-copilot-dev/src/settings/versions/v1/few-shot-examples/task-list-example.ts
duanfuxiang 0c7ee142cb init
2025-01-05 11:51:39 +08:00

20 lines
686 B
TypeScript

import Context from "../../../../core/autocomplete/context-detection";
import { FewShotExample } from "../../index";
const example: FewShotExample = {
context: Context.TaskList,
input: ` # Write blog post about Obsidian
For my Obsidian blog post, I need to do the following:
- [ ] Research about Obsidian.
- [ ] Create an outline for the blog.
- [ ] Gather relevant visual aids.
- [ ] <mask/>
- [ ] Review and edit the first draft
`,
answer: `THOUGHT: The <mask/> is in the middle of a task sequence between gathering visuals before editing 1st draft. The 1st draft is missing and fits the sequence.
LANGUAGE: English
ANSWER: Write the first draft`,
};
export default example;