Spaces:
Running
Running
Update for local dev
Browse files- .gitignore +1 -0
- app.py +2 -2
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.idea/*
|
app.py
CHANGED
|
@@ -10,10 +10,10 @@ from typing import (
|
|
| 10 |
Literal,
|
| 11 |
)
|
| 12 |
|
| 13 |
-
print(f"Gradio version: {gr.__version__}")
|
| 14 |
-
|
| 15 |
DEBUG_LOG = False or os.environ.get("DEBUG_LOG") == "True"
|
| 16 |
|
|
|
|
|
|
|
| 17 |
title = None # "ServiceNow-AI Chat" # modelConfig.get('MODE_DISPLAY_NAME')
|
| 18 |
description = None
|
| 19 |
|
|
|
|
| 10 |
Literal,
|
| 11 |
)
|
| 12 |
|
|
|
|
|
|
|
| 13 |
DEBUG_LOG = False or os.environ.get("DEBUG_LOG") == "True"
|
| 14 |
|
| 15 |
+
print(f"Gradio version: {gr.__version__}")
|
| 16 |
+
|
| 17 |
title = None # "ServiceNow-AI Chat" # modelConfig.get('MODE_DISPLAY_NAME')
|
| 18 |
description = None
|
| 19 |
|