Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified app/public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions app/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const SITE_URL = "https://policybench.org";
const SITE_TITLE = "PolicyBench, by PolicyEngine";
const SITE_DESCRIPTION =
"How accurately frontier AI models estimate US tax and benefit " +
"amounts without tools, scored against PolicyEngine reference outputs.";
"amounts, scored against PolicyEngine reference outputs.";

export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
Expand All @@ -25,7 +25,7 @@ export const metadata: Metadata = {
description: SITE_DESCRIPTION,
images: [
{
url: "/og-image.png",
url: "/og-image.png?v=20260616",
width: 1200,
height: 630,
alt: "PolicyBench — an LLM benchmark for tax and benefit calculation",
Expand All @@ -36,7 +36,7 @@ export const metadata: Metadata = {
card: "summary_large_image",
title: SITE_TITLE,
description: SITE_DESCRIPTION,
images: ["/og-image.png"],
images: ["/og-image.png?v=20260616"],
},
icons: {
icon: [
Expand Down
4 changes: 2 additions & 2 deletions app/src/app/model/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export async function generateMetadata({
)
.join(", ");
const description =
`How accurately ${label} estimates household tax and benefit amounts ` +
`without tools, scored against PolicyEngine (exact-match rate: ` +
`How accurately ${label} estimates household tax and benefit amounts, ` +
`scored against PolicyEngine (exact-match rate: ` +
`${scoreText}).`;
return {
title: label,
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/ProgramHeatmap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function ProgramHeatmap({
className="text-text-secondary mt-3 max-w-xl leading-relaxed animate-fade-up"
style={{ animationDelay: "160ms" }}
>
Bounded score by program and model (AI alone, without tools). Dollar
Bounded score by program and model (AI alone). Dollar
targets use continuous relative-error partial credit; binary coverage
flags use exact accuracy.
</p>
Expand Down