mirror of
https://github.com/dair-ai/Prompt-Engineering-Guide
synced 2024-11-04 12:00:10 +00:00
88 lines
2.1 KiB
Plaintext
88 lines
2.1 KiB
Plaintext
# Prompting-Techniken
|
|
|
|
import { Cards, Card } from 'nextra-theme-docs';
|
|
import {
|
|
CardsIcon,
|
|
OneIcon,
|
|
WarningIcon,
|
|
FilesIcon,
|
|
} from 'components/icons';
|
|
|
|
Das Prompt-Engineering hilft dabei, Prompts effektiv zu gestalten und zu verbessern, um bessere Ergebnisse bei verschiedenen Aufgaben mit LLMs zu erzielen.
|
|
|
|
Während die vorherigen grundlegenden Beispiele unterhaltsam waren, behandeln wir in diesem Abschnitt fortgeschrittenere Techniken des Prompt-Engineerings, die es uns ermöglichen, komplexere Aufgaben zu bewältigen und die Zuverlässigkeit und Leistung von LLMs zu verbessern.
|
|
|
|
<Cards>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Zero-Shot Prompting"
|
|
href="/techniques/zeroshot"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Few-Shot Prompting"
|
|
href="/techniques/fewshot"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Chain-of-Thought Prompting"
|
|
href="/techniques/cot"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Selbstkonsistenz"
|
|
href="/techniques/consistency"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Generiertes Wissens-Prompting"
|
|
href="/techniques/knowledge"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Tree of Thoughts Prompting"
|
|
href="/techniques/tot"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Retrieval Augmented Generation"
|
|
href="/techniques/rag"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Automatic Reasoning and Tool-Use"
|
|
href="/techniques/art"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Automatic Prompt Engineer"
|
|
href="/techniques/ape"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Active-Prompt"
|
|
href="/techniques/activeprompt"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Direct Stimulus Prompting"
|
|
href="/techniques/dsp"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Program-Aided Language"
|
|
href="/techniques/pal"
|
|
/>
|
|
<Card icon={<FilesIcon />} title="ReAct" href="/techniques/react" />
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Multimodal CoT"
|
|
href="/techniques/multimodalcot"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Graph-Prompting"
|
|
href="/techniques/graph"
|
|
/>
|
|
</Cards>
|