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

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[project]
name = "ai-novel"
version = "0.1.0"
description = "AI Novel Writer Agent using LangChain"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"langchain>=0.1.0",
"langchain-openai>=0.1.0",
"langchain-ollama>=0.1.0",
"langchain-community>=0.1.0",
"pyyaml>=6.0",
"click>=8.0",
"rich>=13.0",
]
[project.scripts]
ai-novel = "ai_novel.main:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"