Update list_files limit

This commit is contained in:
Saoud Rizwan
2024-08-30 08:43:10 -04:00
parent 4d89468eb1
commit 707a7c954a

View File

@@ -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<string> {