Stateless mode: in-memory sessions, delete per request; README: document stateless behavior

This commit is contained in:
2025-08-09 16:18:16 +05:30
parent 57cbf155ea
commit 92ea439fc5
2 changed files with 26 additions and 9 deletions

View File

@@ -31,4 +31,9 @@ curl -s -X POST http://localhost:8000/process_data \
```
Returns `{ "emails": "..." }`.
### Stateless mode
- Sessions are ephemeral and in-memory only; no SQLite persistence.
- Each request creates a new session and it is deleted after completion.
- Web UI works, but conversation history resets on refresh/restart.