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
9 changes: 5 additions & 4 deletions packages/tui/src/component/altimate-onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -347,11 +347,12 @@ export function DialogModelWelcome(props: {

// altimate_change start — surfaced in the DialogAltimateBaseConfirm consent gate before any Base
// credential is minted. This is the text a user actually consents against before any registration
// request, so it must disclose that requests are linkable across launches — not defer that to
// docs/docs/configure/providers.md, which a user never sees before accepting. Keep this in sync
// with that fuller "Data handling" note.
// request, so it states the core data terms up front: requests/responses may be logged and used to
// improve Altimate's products (including the model), so users should not send secrets. The
// persistent per-install-id linkage detail is disclosed in docs/docs/configure/providers.md
// ("Data handling"), not repeated in this gate; keep the core terms in sync with that note.
export const ALTIMATE_BASE_DISCLOSURE =
"Altimate Base is free and requires no signup. Requests and responses may be logged and used to improve Altimate's products, including the model. Secrets are automatically masked before storage, but don't rely on it — avoid sending secrets or confidential code. Logs are linked to a persistent per-installation identifier. Usage is rate limited."
"Altimate Base is free and requires no signup. Requests and responses may be logged and used to improve Altimate's products, including the model. Secrets are automatically masked before storage, but don't rely on it — avoid sending secrets or confidential code. Usage can be rate limited."
// altimate_change end

type RegisterOutcome =
Expand Down
4 changes: 3 additions & 1 deletion packages/tui/test/cli/tui/dialog-altimate-base.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ test.serial("Altimate Base shows the privacy disclosure before registration and
const confirm = await mountConfirm()
try {
const frame = confirm.app.captureCharFrame()
expect(confirm.disclosure).toContain("Requests and responses may be logged")
expect(confirm.disclosure).toContain("Requests and responses may be logged and used")
// The persistent per-install-id linkage line is intentionally not in the gate (it lives in docs).
expect(confirm.disclosure).not.toContain("per-installation identifier")
expect(frame).toContain("Use Altimate Base?")
expect(frame.replace(/\s+/g, " ")).toContain("Requests and responses may be logged and used")
expect(frame).toContain("No — pick something else")
Expand Down
Loading