Lumo should keep working on response even if I leave the app.
If I submit a prompt to Lumo and my phone goes to sleep waiting for the prompt to finish or if I tab out for a few minutes and come back, the finished response should be waiting for me when I return.
-
Unbitten8366
commented
If I close the app while Lumo is generating a response, the answer is lost. No buffer, no way to retrieve it later. The reason is clear: LLM server is stateless, client is the persistence layer.
Other AI assistants (Claude, ChatGPT) solve this server-side – finish generating, client picks it up later. Lumo can't do that because of the no-logs policy.
But it could work encrypted:
1. LLM generates response
2. Encrypts it with my public key (they have it – it's public)
3. Stores encrypted blob in a sort of "Lumo inbox"
4. Deletes everything on its end – stays stateless
5. Client reconnects → fetches encrypted blob → decrypts locally → saves with zero-access encryptionSame principle as Proton Mail handling incoming emails. Infrastructure already exists.
No logs, no plaintext on the server, no persistent state. Just an encrypted drop waiting to be picked up.