mirror of
https://github.com/dair-ai/Prompt-Engineering-Guide
synced 2024-11-04 12:00:10 +00:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
# Models
|
|
|
|
import { Callout } from 'nextra-theme-docs'
|
|
import {Cards, Card} from 'nextra-theme-docs'
|
|
import {FilesIcon} from 'components/icons'
|
|
|
|
In this section, we will cover some of the recent language models and how they successfully apply the latest and most advanced prompting engineering techniques. In addition, we cover capabilities of these models on a range of tasks and prompting setups like few-shot prompting, zero-shot prompting, and chain-of-thought prompting. Understanding these capabilities are important to understand the limitations of these models and how to use them effectively.
|
|
|
|
|
|
<Cards>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Flan"
|
|
href="/models/flan"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="ChatGPT"
|
|
href="/models/chatgpt"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Llama"
|
|
href="/models/llama"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="GPT-4"
|
|
href="/models/gpt-4"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Mistral 7B"
|
|
href="/models/mistral-7b"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="Gemini"
|
|
href="/models/gemini"
|
|
/>
|
|
<Card
|
|
icon={<FilesIcon />}
|
|
title="LLM Collection"
|
|
href="/models/collection"
|
|
/>
|
|
</Cards> |