Small changes

This commit is contained in:
Anish
2026-04-12 12:34:45 +05:30
parent 7fc44c91b8
commit d39a8a049a
29 changed files with 1410 additions and 5 deletions

7
src/llm/__main__.py Normal file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python3
"""Entry point for llm CLI."""
from llm.cli.selector import main
if __name__ == "__main__":
main()