Merge pull request #6 from bdim404/main

Add audiobook generation and enhance LLM configuration
This commit is contained in:
2026-03-11 20:36:28 +08:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -361,7 +361,7 @@ async def parse_one_chapter(project_id: int, chapter_id: int, user: User, db) ->
crud.delete_audiobook_segments_for_chapter(db, project_id, chapter.chapter_index)
chunks = _chunk_chapter(chapter.source_text, max_chars=4000)
chunks = _chunk_chapter(chapter.source_text, max_chars=1500)
ps.append_line(key, f"{len(chunks)}\n")
seg_counter = 0

View File

@@ -87,6 +87,7 @@ class LLMService:
{"role": "user", "content": user_message},
],
"temperature": 0.3,
"max_tokens": 8192,
}
timeout = httpx.Timeout(connect=10.0, read=90.0, write=10.0, pool=5.0)