Skip to content

Commit 48b023a

Browse files
committed
fix some typos
1 parent 7119d79 commit 48b023a

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

app/(dashboard)/page.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -896,6 +896,16 @@ export default function HomePage() {
896896
<p>
897897
Verbalized Sampling provides a training-free, model-agnostic approach to mitigating mode collapse by prompting the model to generate response distributions with verbalized probability estimates.
898898
</p>
899+
Check our{' '}
900+
<a
901+
href="https://arxiv.org/abs/2510.01171"
902+
className="underline hover:text-orange-500 font-semibold"
903+
target="_blank"
904+
rel="noopener noreferrer"
905+
>
906+
Paper
907+
</a>{' '}
908+
for more details on the prompt.
899909
</div>
900910
</div>
901911
<div className="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-5 lg:flex lg:items-center">

app/(dashboard)/terminal_prompt.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ export function Terminal_Prompt() {
77
const [copied, setCopied] = useState(false);
88

99
const terminalSteps = [
10-
{ line: 'You are a helpful assistant. For each user query, generate a set of five responses. Each response should be approximately 200 words.', showPrompt: true },
11-
{ line: 'Return the responses each within a separate <response> tag.', showPrompt: false },
10+
{ line: 'Generate 10 responses to the user query, each within a separate <response> tag.', showPrompt: true },
1211
{ line: 'Each <response> tag must include a <text> and a numeric <probability>.', showPrompt: false },
1312
{ line: 'Randomly sample the responses from the full distribution.', showPrompt: false },
14-
{ line: '<user_query>Write a short story about a bear.</user_query>', showPrompt: true },
13+
{ line: '<user_query>Write a 100-word story about a bear.</user_query>', showPrompt: true },
1514
];
1615

1716
const fullPrompt = terminalSteps.map(step => step.line).join('\n');
@@ -23,7 +22,7 @@ export function Terminal_Prompt() {
2322
};
2423

2524
return (
26-
<div className="w-full rounded-lg shadow-lg overflow-hidden bg-gray-900 text-white font-mono text-sm relative min-h-[300px]">
25+
<div className="w-full rounded-lg shadow-lg overflow-hidden bg-gray-900 text-white font-mono text-sm relative min-h-[200px]">
2726
<div className="p-4">
2827
<div className="flex justify-between items-center mb-4">
2928
<div className="flex space-x-2">

0 commit comments

Comments
 (0)