Initial commit: AI Novel Generation Tool with prologue support and progress tracking

This commit is contained in:
2025-07-16 00:45:41 +08:00
commit eab7f3379a
46 changed files with 6405 additions and 0 deletions

6
main.py Normal file
View File

@ -0,0 +1,6 @@
"""Entry point for AI Novel Writer."""
from ai_novel.main import cli
if __name__ == "__main__":
cli()