@danhachuel/thunderbolt 0.4.1 → 0.4.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 +3 -3
- package/package.json +1 -1
package/app/main.py
CHANGED
|
@@ -2771,7 +2771,7 @@ def render_music_creation():
|
|
|
2771
2771
|
|
|
2772
2772
|
def render_custom_music_voices() -> None:
|
|
2773
2773
|
"""Reserved view for future reusable custom music-voice blueprints."""
|
|
2774
|
-
st.title("Vozes Personalizadas
|
|
2774
|
+
st.title("Vozes Personalizadas")
|
|
2775
2775
|
|
|
2776
2776
|
|
|
2777
2777
|
def render_scripts():
|
|
@@ -7031,7 +7031,7 @@ def main():
|
|
|
7031
7031
|
music_items = [
|
|
7032
7032
|
("Criação de Músicas", ":material/music_note:", "Criação de Músicas"),
|
|
7033
7033
|
("Music Backlog", ":material/queue_music:", "Music Backlog"),
|
|
7034
|
-
("Vozes Personalizadas
|
|
7034
|
+
("Vozes Personalizadas", ":material/record_voice_over:", "Vozes Personalizadas"),
|
|
7035
7035
|
("Upload Música", ":material/library_music:", "Upload Música"),
|
|
7036
7036
|
]
|
|
7037
7037
|
models_ai_items = [
|
|
@@ -7157,7 +7157,7 @@ def main():
|
|
|
7157
7157
|
"Backlog Vídeos": render_videos,
|
|
7158
7158
|
"Criação de Músicas": render_music_creation,
|
|
7159
7159
|
"Music Backlog": render_music_backlog,
|
|
7160
|
-
"Vozes Personalizadas
|
|
7160
|
+
"Vozes Personalizadas": render_custom_music_voices,
|
|
7161
7161
|
"Upload Música": render_music_upload,
|
|
7162
7162
|
"Roteiros": render_scripts,
|
|
7163
7163
|
"Thumbnails": render_thumbnails,
|
package/package.json
CHANGED