Files
llms-txt-generator/compile.py
2025-11-24 22:04:16 -05:00

16 lines
382 B
Python

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()