Optional title generation

The boolean configuration var ENABLE_TITLE_GENERATION makes title generation optionaL
This commit is contained in:
Nacho G. Mac Dowell
2025-02-13 16:28:39 +01:00
parent 3ac3615ecd
commit c47eddce32
43 changed files with 120 additions and 12 deletions

View File

@@ -1190,6 +1190,12 @@ ENABLE_TAGS_GENERATION = PersistentConfig(
os.environ.get("ENABLE_TAGS_GENERATION", "True").lower() == "true",
)
ENABLE_TITLE_GENERATION = PersistentConfig(
"ENABLE_TITLE_GENERATION",
"task.title.enable",
os.environ.get("ENABLE_TITLE_GENERATION", "True").lower() == "true",
)
ENABLE_SEARCH_QUERY_GENERATION = PersistentConfig(
"ENABLE_SEARCH_QUERY_GENERATION",