diff options
Diffstat (limited to 'apps/web/app/api')
| -rw-r--r-- | apps/web/app/api/store/route.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/web/app/api/store/route.ts b/apps/web/app/api/store/route.ts index 13cef19e..e0ff82cd 100644 --- a/apps/web/app/api/store/route.ts +++ b/apps/web/app/api/store/route.ts @@ -37,14 +37,6 @@ const createMemoryFromAPI = async (input: { ), ); - if (numberOfItemsSavedInLast2Hours[0]!.count >= 20) { - return { - success: false, - data: 0, - error: `You have exceeded the limit`, - }; - } - const vectorSaveResponse = await fetch( `${process.env.BACKEND_BASE_URL}/api/add`, { |