Update webui_with_vnc.py
Browse files- webui_with_vnc.py +5 -4
webui_with_vnc.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
import threading
|
| 4 |
-
import os
|
| 5 |
import argparse
|
|
|
|
| 6 |
|
|
|
|
|
|
|
| 7 |
# # Example theme map for the argument parser (add more themes if you have them)
|
| 8 |
# theme_map = {
|
| 9 |
# "Ocean": gr.themes.Ocean(),
|
|
|
|
| 1 |
+
from dotenv import load_dotenv
|
| 2 |
+
load_dotenv()
|
|
|
|
|
|
|
| 3 |
import argparse
|
| 4 |
+
from src.webui.interface import theme_map, create_ui
|
| 5 |
|
| 6 |
+
|
| 7 |
+
|
| 8 |
# # Example theme map for the argument parser (add more themes if you have them)
|
| 9 |
# theme_map = {
|
| 10 |
# "Ocean": gr.themes.Ocean(),
|