Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,6 +5,10 @@ import datetime
|
|
| 5 |
import time
|
| 6 |
import requests
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
from checks.failed_check import create_failed_gradio_ui
|
| 10 |
from checks.endpoint_check import check_public_endpoint
|
|
@@ -18,7 +22,7 @@ from tools.tools import load_tools
|
|
| 18 |
from agents.model import load_huggingface_model
|
| 19 |
from agents.prompts import load_prompts
|
| 20 |
|
| 21 |
-
from ContentGradio import ContentAgentUI
|
| 22 |
|
| 23 |
def initialize_agent(endpoint_uri: str):
|
| 24 |
|
|
|
|
| 5 |
import time
|
| 6 |
import requests
|
| 7 |
|
| 8 |
+
from ui.statusui import StatusUI
|
| 9 |
+
from ui.contentagentui import ContentAgentUI
|
| 10 |
+
from ui.gradioui import GradioUI, create_failed_gradio_ui
|
| 11 |
+
|
| 12 |
|
| 13 |
from checks.failed_check import create_failed_gradio_ui
|
| 14 |
from checks.endpoint_check import check_public_endpoint
|
|
|
|
| 22 |
from agents.model import load_huggingface_model
|
| 23 |
from agents.prompts import load_prompts
|
| 24 |
|
| 25 |
+
#from ContentGradio import ContentAgentUI
|
| 26 |
|
| 27 |
def initialize_agent(endpoint_uri: str):
|
| 28 |
|