From 707a7c954a3bf8c1f4817a9e872d37b9a58703fa Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Fri, 30 Aug 2024 08:43:10 -0400 Subject: [PATCH] Update list_files limit --- src/parse-source-code/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse-source-code/index.ts b/src/parse-source-code/index.ts index f87b57d..811d11e 100644 --- a/src/parse-source-code/index.ts +++ b/src/parse-source-code/index.ts @@ -4,7 +4,7 @@ import os from "os" import * as path from "path" import { LanguageParser, loadRequiredLanguageParsers } from "./languageParser" -export const LIST_FILES_LIMIT = 1000 +export const LIST_FILES_LIMIT = 500 // TODO: implement caching behavior to avoid having to keep analyzing project for new tasks. export async function parseSourceCodeForDefinitionsTopLevel(dirPath: string): Promise {