From 4e677d0b08f96e1d31fc6111005cf2644a0c002e Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Thu, 23 Oct 2025 18:26:32 -0300 Subject: [PATCH] Added files regex --- frontend/src/lib/constants.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/constants.ts b/frontend/src/lib/constants.ts index 120852ab..dfd7358a 100644 --- a/frontend/src/lib/constants.ts +++ b/frontend/src/lib/constants.ts @@ -32,4 +32,7 @@ export const TOTAL_ONBOARDING_STEPS = 3; /** * Local Storage Keys */ -export const ONBOARDING_STEP_KEY = "onboarding_current_step"; \ No newline at end of file +export const ONBOARDING_STEP_KEY = "onboarding_current_step"; + +export const FILES_REGEX = + /(?<=I'm uploading a document called ['"])[^'"]+\.[^.]+(?=['"]\. Here is its content:)/; \ No newline at end of file