Skip to content

Commit f60b9f3

Browse files
committed
add podcast and prompts
1 parent 8b7ab50 commit f60b9f3

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

app/(dashboard)/page.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,14 @@ export default function HomePage() {
101101
</DropdownMenuItem>
102102
</DropdownMenuContent>
103103
</DropdownMenu>
104+
<Button asChild className="rounded-full px-8 py-4 text-lg">
105+
<Link href="https://www.youtube.com/watch?v=VoBdywmdim0" className="flex items-center gap-3" target="_blank" rel="noopener noreferrer">
106+
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
107+
<path d="M10 8.64L15.27 12 10 15.36V8.64M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20Z" />
108+
</svg>
109+
Podcast
110+
</Link>
111+
</Button>
104112
</div>
105113
</div>
106114
</div>

app/(dashboard)/terminal_prompt.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ export function Terminal_Prompt() {
1515
const terminalSteps = [
1616
{ line: '<instruction>', showPrompt: true },
1717
{ 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: 'Randomly sample the responses from the full distribution.', 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 },
20-
{ line: 'Write a 100-word story about a bear.', showPrompt: true },
20+
{ line: 'Tell me a short story about a bear.', showPrompt: true },
2121
];
2222

2323
const fullPrompt = terminalSteps.map(step => step.line).join('\n');

0 commit comments

Comments
 (0)