File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ import type { Metadata } from 'next' ;
2+
3+ export const metadata : Metadata = {
4+ title : 'Verbalized Sampling Blog' ,
5+ description : 'Verbalized Sampling: A training-free method to restore diversity in aligned LLMs by prompting for probability distributions.' ,
6+ openGraph : {
7+ title : 'Verbalized Sampling Blog' ,
8+ description : 'Verbalized Sampling: A training-free method to restore diversity in aligned LLMs by prompting for probability distributions.' ,
9+ url : 'https://www.verbalized-sampling.com/blog/' ,
10+ type : 'website' ,
11+ images : [
12+ {
13+ url : 'https://www.verbalized-sampling.com/og-qualitative.jpg' ,
14+ width : 1200 ,
15+ height : 630 ,
16+ alt : 'Verbalized Sampling Blog'
17+ }
18+ ]
19+ } ,
20+ twitter : {
21+ card : 'summary_large_image' ,
22+ title : 'Verbalized Sampling Blog' ,
23+ description : 'Verbalized Sampling: A training-free method to restore diversity in aligned LLMs by prompting for probability distributions.' ,
24+ images : [ 'https://www.verbalized-sampling.com/og-qualitative.jpg' ]
25+ }
26+ } ;
27+
28+ export default function BlogLayout ( {
29+ children,
30+ } : {
31+ children : React . ReactNode ;
32+ } ) {
33+ return children ;
34+ }
You can’t perform that action at this time.
0 commit comments