(no commit message)
This commit is contained in:
15
compile.py
Normal file
15
compile.py
Normal 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()
|
||||
Reference in New Issue
Block a user