@danhachuel/thunderbolt 0.3.1 → 0.3.3
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 +2 -2
- 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():
|
|
@@ -4208,7 +4208,7 @@ def main():
|
|
|
4208
4208
|
channel_profile_items = [
|
|
4209
4209
|
("Canais YouTube", ":material/ondemand_video:", "Canais YouTube"),
|
|
4210
4210
|
("Contas TikTok", ":material/account_circle:", "Contas TikTok"),
|
|
4211
|
-
("Facebook Pages", ":material/
|
|
4211
|
+
("Facebook Pages", ":material/public:", "Facebook Pages"),
|
|
4212
4212
|
]
|
|
4213
4213
|
music_items = [
|
|
4214
4214
|
("Criação de Músicas", ":material/music_note:", "Criação de Músicas"),
|
package/package.json
CHANGED