Skip to content

Commit c39ac9e

Browse files
committed
sync changes
1 parent d00bc75 commit c39ac9e

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

app/(dashboard)/page.tsx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,23 @@ export default function HomePage() {
206206
Try It Yourself: <span className="text-orange-500">The Magic Prompt</span>
207207
</h2>
208208
<p className="text-base text-gray-600 mt-4">
209-
Use this prompt to sample multiple responses with explicit probabilities from your favorite LLM.
209+
Use this prompt to sample multiple responses with explicit probabilities with your favorite LLM.
210210
Copy it into your provider's playground, API call, or chat interface, then replace "Tell me a short story about a bear" with your task.
211-
For best results, we recommend starting with models like GPT-5, Claude 4 Opus, and Gemini 2.5 Pro.
211+
<br />
212+
<br />
213+
For best results, we recommend starting with models like GPT-5, Claude Opus 4, and Gemini 2.5 Pro.
214+
<br />
215+
<br />
216+
Please refer to our&nbsp;
217+
<a
218+
href="https://github.com/CHATS-lab/verbalize-sampling#prompt-templates"
219+
className="underline hover:text-orange-500 font-semibold"
220+
target="_blank"
221+
rel="noopener noreferrer"
222+
>
223+
GitHub
224+
</a>
225+
&nbsp;for additional prompt variations and examples.
212226
</p>
213227
</div>
214228
<div className="mt-8 lg:mt-0 lg:col-span-5 lg:mx-0 w-full">

app/(dashboard)/terminal_prompt.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ export function Terminal_Prompt() {
1414
// ];
1515
const terminalSteps = [
1616
{ line: '<instruction>', showPrompt: true },
17-
{ line: 'Generate 5 responses to the user query, each within a separate <response> tag. Each <response> must include a <text> and a numeric <probability>.', showPrompt: false },
18-
{ line: 'Please sample at random from the tails of the distribution, such that the probability of each response is less than 0.10.', showPrompt: false },
17+
{ line: 'Generate 5 responses to the user query, each within a separate <response> tag. Each <response> must include a <text> and a numeric <probability>. Please sample at random from the tails of the distribution, such that the probability of each response is less than 0.10.', showPrompt: false },
18+
// { line: 'Please sample at random from the tails of the distribution, such that the probability of each response is less than 0.10.', showPrompt: false },
1919
{ line: '</instruction>', showPrompt: false },
2020
{ line: 'Tell me a short story about a bear.', showPrompt: true },
2121
];

0 commit comments

Comments
 (0)