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
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ export function AiReviewSettings({ reviewability }: { reviewability: Array<{ pr:
AI review &amp; BYOK
</h2>
<p className="mt-1 text-token-xs text-muted-foreground">
Free Cloudflare Workers AI by default. Bring your own Anthropic/OpenAI key for a
frontier-quality advisory write-up — your key, your provider account. Consensus blocking
always uses the free models and only applies to confirmed contributors.
Uses the operator's default reviewer by default. Bring your own Anthropic/OpenAI key for
a frontier-quality advisory write-up — your key, your provider account. Consensus
blocking always uses the default reviewer and only applies to confirmed contributors.
</p>
</div>
<StatusPill status={mode === "off" ? "info" : mode === "block" ? "warn" : "ready"}>
Expand Down
9 changes: 5 additions & 4 deletions apps/gittensory-ui/src/routes/docs.ai-summaries.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createFileRoute } from "@tanstack/react-router";
import { createFileRoute, Link } from "@tanstack/react-router";

import { DocsPage } from "@/components/site/docs-page";
import { Callout } from "@/components/site/primitives";
Expand Down Expand Up @@ -73,9 +73,10 @@ function AiSummariesDoc() {

<h2>Model choice</h2>
<p>
There is no per-user or per-session model picker. The self-hosted or hosted operator
configures one fixed Cloudflare Workers AI model (<code>WORKERS_AI_SUMMARY_MODEL</code>,
default a small Llama instruct model) for the whole instance. Summaries are off by default (
There is no per-user or per-session model picker. The operator configures one AI provider
for the whole instance — see{" "}
<Link to="/docs/self-hosting-ai-providers">self-hosting AI providers</Link> for the
Codex/Claude Code/Ollama/OpenAI-compatible/Anthropic options. Summaries are off by default (
<code>AI_SUMMARIES_ENABLED</code>); public-comment rewriting is a separate,
also-off-by-default switch (<code>AI_PUBLIC_COMMENTS_ENABLED</code>).
</p>
Expand Down
Loading