Update modules/interface.py
Browse files- modules/interface.py +11 -11
modules/interface.py
CHANGED
@@ -18,20 +18,20 @@ import config
|
|
18 |
class Interface:
|
19 |
"""Klasse zur Verwaltung der Benutzeroberfläche"""
|
20 |
|
21 |
-
def
|
22 |
"""
|
23 |
-
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
28 |
"""
|
29 |
-
self
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
secondary_hue=config.UI_SECONDARY_COLOR
|
34 |
-
)
|
35 |
|
36 |
def create_interface(self) -> gr.Blocks:
|
37 |
"""
|
|
|
18 |
class Interface:
|
19 |
"""Klasse zur Verwaltung der Benutzeroberfläche"""
|
20 |
|
21 |
+
def get_interface(self) -> gr.Blocks:
|
22 |
"""
|
23 |
+
Gibt das erstellte Interface zurück
|
24 |
|
25 |
+
Returns:
|
26 |
+
Das Gradio-Interface
|
27 |
+
|
28 |
+
Raises:
|
29 |
+
ValueError: Wenn das Interface nicht erstellt wurde
|
30 |
"""
|
31 |
+
if not hasattr(self, "_interface"):
|
32 |
+
raise ValueError("Interface not created yet. Call create_interface() first.")
|
33 |
+
|
34 |
+
return self._interface
|
|
|
|
|
35 |
|
36 |
def create_interface(self) -> gr.Blocks:
|
37 |
"""
|