// FAQ section for Fongos — trust-builder focus, per provided content. function FAQ() { const [open, setOpen] = React.useState(0); const items = [ { q: 'Does Fongos send anything to the cloud?', a: <>

Depends on mode. Local-only: no. Cloud-assisted: only the specific prompts and context for your current task, sent to the AI provider you chose.

No persistent storage on our side. No training on your data. No telemetry beyond opt-in crash reports. Your screen contents, files, and clipboard never leave your machine, regardless of mode.

}, { q: 'Can he see passwords or banking?', a: <>

No. Fongos watches your screen but with strict guardrails:

}, { q: 'Is my data used to train models?', a:

No. Not by us, not by the provider your local instance talks to (your cloud provider's paid-tier policy applies — we recommend settings that disable training). Fongos's own models are trained exclusively on our reference instance with explicit consent. Your local memory never leaves your machine for training purposes.

}, { q: 'How do I stop him from acting on something?', a: <>

Three ways:

}, { q: 'What happens if my internet drops?', a: <>

Local-only mode: nothing changes.

Cloud-assisted mode: he keeps working — screen awareness, goal reasoning, memory all continue running locally. Tasks that need cloud-tier reasoning queue until you're back online. Nothing crashes.

}, { q: 'What does beta access cost?', a:

Nothing for the local tier. If you use our managed cloud-assisted mode there's a small fee; bring-your-own-keys is always supported. Pricing at general availability will be announced then — a free local tier will always be included.

}, ]; return (
Hard questions.
Direct answers.
{items.map((it,i)=>{ const isOpen = open===i; return (
{isOpen && (
{it.a}
)}
); })}

more in the docs · shipped with beta access

); } Object.assign(window, { FAQ });