@danhachuel/thunderbolt 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/main.py +1 -1
- package/package.json +1 -1
package/app/main.py
CHANGED
|
@@ -1890,7 +1890,7 @@ def render_new_video(page_title: str = "Criação de Vídeos"):
|
|
|
1890
1890
|
payload.update({"topic": topic_value, "topic_source": payload.get("topic_source") or ("llm" if st.session_state.get("new_video_topic_meta") else "manual"), "language": language, "format": fmt, "style_wide": style, "style_ia": style_ia, "music_mode": style == "music", "background_mode": "none" if style == "music" else ("ai" if style == "full_ia" else "stock"), "music_path": music_path, "music_source": music_source, "generation_settings": generation_settings})
|
|
1891
1891
|
batch = create_batch(mode, selected, topic_value, quantity_value, {"language": language, "format": fmt, "style_wide": style, "style_ia": style_ia, "music_mode": style == "music", "background_mode": "none" if style == "music" else ("ai" if style == "full_ia" else "stock"), "music_path": music_path, "music_source": music_source, "generation_settings": generation_settings, "topic_source": payload.get("topic_source", "manual"), "channel_payloads": {selected[0]: payload}})
|
|
1892
1892
|
tasks = create_tasks_for_batch(batch)
|
|
1893
|
-
st.success(f"Lote {batch['id']} criado com {len(tasks)} tarefa(s). Abra
|
|
1893
|
+
st.success(f"Lote {batch['id']} criado com {len(tasks)} tarefa(s). Abra {ui_text('Backlog Vídeos', current_ui_language())} para acompanhar.")
|
|
1894
1894
|
|
|
1895
1895
|
|
|
1896
1896
|
def render_music_creation():
|
package/package.json
CHANGED