This commit is contained in:
duanfuxiang
2025-01-05 11:51:39 +08:00
commit 0c7ee142cb
215 changed files with 20611 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import Context from "../../../../core/autocomplete/context-detection";
import { FewShotExample } from "../../shared";
const example: FewShotExample = {
context: Context.BlockQuotes,
input: `# Matthew effect
The Matthew effect is named after the following New Testament verse:
> <mask/>
According to Malcolm Gladwell, the Matthew effect means that more successful people are most likely given special attention and opportunities leading to further success. `,
answer: `THOUGHT: The <mask/> is located inside a Markdown quote block, so I should write a quote. The text after <mask/> is about the Matthew effect. The text before <mask/> say the quote is from the New Testament. So my answer should contain something from the New Testament that is about the Matthew effect.
ANSWER: For unto everyone that hath shall be given, and he shall have abundance.
> But from him that hath not shall taken away even that which he hath.
> Matthew 25:29`,
};
export default example;