@ -3,7 +3,7 @@
* Each extraction is stored with a unique ID, timestamp, and the full payload.
*/
/** Maximum number of extractions to keep in memory */
const MAX_EXTRACTIONS = 10;
const MAX_EXTRACTIONS = 1;
class ExtractionStore {
constructor() {
this.extractions = new Map();
@ -30,7 +30,7 @@ export interface Extraction {
}
private extractions: Map<string, Extraction> = new Map();