dwb2023 commited on
Commit
8f97bb1
·
verified ·
1 Parent(s): fce2161

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ def extract_repo_content(url):
63
  file_summary = get_file_summary(file_path, file_type)
64
  content = {"header": file_summary}
65
 
66
- if file_type in SUPPORTED_FILE_TYPES and file_summary["size"] <= 1024 * 1024:
67
  try:
68
  content["content"] = read_file_content(file_path)
69
  except Exception as e:
 
63
  file_summary = get_file_summary(file_path, file_type)
64
  content = {"header": file_summary}
65
 
66
+ if file_type in SUPPORTED_FILE_TYPES and file_summary["size"] <= 256 * 1024:
67
  try:
68
  content["content"] = read_file_content(file_path)
69
  except Exception as e: