(no commit message)

This commit is contained in:
2025-11-24 22:04:16 -05:00
parent e5757a367b
commit 2c346586a9
12 changed files with 601 additions and 18 deletions

15
compile.py Normal file
View File

@@ -0,0 +1,15 @@
import sys
from src.analyzer import RepositoryAnalyzer, RepositoryAnalyzerConfig
llms_txt_generator = RepositoryAnalyzer(
config=RepositoryAnalyzerConfig()
)
def main():
try:
llms_txt_generator.push_to_hub("johwang/llms-txt-generator", with_code=True)
except Exception as e:
print(f"Error: {e}", file=sys.stderr)
if __name__ == "__main__":
main()