diff --git a/examples/chat/.env.example b/examples/chat/.env.example index 2ec0b4e..bea389b 100644 --- a/examples/chat/.env.example +++ b/examples/chat/.env.example @@ -10,6 +10,10 @@ MONGODB_URI=mongodb://localhost:27017/provenancekit-chat # ── AI Providers ────────────────────────────────────────────────────────────── # OpenAI (Required — primary provider, powers GPT-4o by default) OPENAI_API_KEY=sk-proj-... +# Optional image-generation model overrides. Defaults follow the current +# OpenAI Images API guide: GPT Image models return base64 PNG data by default. +# OPENAI_IMAGE_MODEL=gpt-image-2 +# OPENAI_IMAGE_FALLBACK_MODEL=gpt-image-1 # Anthropic (Optional — enables Claude models in the model selector) ANTHROPIC_API_KEY=sk-ant-... @@ -49,4 +53,4 @@ NEXT_PUBLIC_PK_DASHBOARD_URL=http://localhost:3000 # Base URL used when generating shareable provenance links (the /p/:shareId viewer) # In production this should point to your deployed provenancekit-app instance -NEXT_PUBLIC_SHARE_BASE_URL=http://localhost:3000 \ No newline at end of file +NEXT_PUBLIC_SHARE_BASE_URL=http://localhost:3000 diff --git a/examples/chat/app/(app)/chat/page.tsx b/examples/chat/app/(app)/chat/page.tsx index 728aca8..0464d2f 100644 --- a/examples/chat/app/(app)/chat/page.tsx +++ b/examples/chat/app/(app)/chat/page.tsx @@ -90,7 +90,7 @@ export default function ChatHomePage() {
{authenticated - ? "Every response is provenance-tracked. Ask me anything — or try DALL-E, TTS, or voice input." + ? "Every response is provenance-tracked. Ask me anything — or try image generation, TTS, or voice input." : "AI chat with built-in provenance tracking. Sign in to get started."}
diff --git a/examples/chat/app/(app)/provenance/page.tsx b/examples/chat/app/(app)/provenance/page.tsx index 6d2faca..dfbccf4 100644 --- a/examples/chat/app/(app)/provenance/page.tsx +++ b/examples/chat/app/(app)/provenance/page.tsx @@ -151,7 +151,7 @@ export default function ProvenanceExplorerPage() {Search by file
-Record attribution with ProvenanceKit
-- To formally claim this content as your work, use the ProvenanceKit SDK to - record a provenance bundle for your original file. This links your identity - as creator on-chain. +
+ Record this uploaded file now with license, authorization, AI-training, and review metadata.
- - View recording guide -{claimError}
}