Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,6 +6,8 @@ import os
|
|
| 6 |
from datetime import datetime
|
| 7 |
import json
|
| 8 |
import secrets
|
|
|
|
|
|
|
| 9 |
folders = [{'out':'output'},
|
| 10 |
{'ass':'assets'}
|
| 11 |
]
|
|
@@ -34,8 +36,8 @@ chatbot_prompts = load_yaml_file("system_prompts.yaml")
|
|
| 34 |
tab_names = ["Image Generation", "Chat/Prompt Enhancement", "AIvatar ChatBot", "Story Generation", "Gallery", "System Prompts Editor"]
|
| 35 |
tabs = st.tabs(tab_names)
|
| 36 |
|
| 37 |
-
|
| 38 |
-
tuber = thaTube(
|
| 39 |
|
| 40 |
# Image Generation Tab
|
| 41 |
with tabs[0]:
|
|
|
|
| 6 |
from datetime import datetime
|
| 7 |
import json
|
| 8 |
import secrets
|
| 9 |
+
from thaTube import thaTube
|
| 10 |
+
|
| 11 |
folders = [{'out':'output'},
|
| 12 |
{'ass':'assets'}
|
| 13 |
]
|
|
|
|
| 36 |
tab_names = ["Image Generation", "Chat/Prompt Enhancement", "AIvatar ChatBot", "Story Generation", "Gallery", "System Prompts Editor"]
|
| 37 |
tabs = st.tabs(tab_names)
|
| 38 |
|
| 39 |
+
# thaTube
|
| 40 |
+
tuber = thaTube()
|
| 41 |
|
| 42 |
# Image Generation Tab
|
| 43 |
with tabs[0]:
|