Spaces:
Paused
Paused
Fix Gradio 5.0 type annotation error: remove list type hint
Browse files- app_gradio.py +1 -1
app_gradio.py
CHANGED
|
@@ -14,7 +14,7 @@ logger = logging.getLogger(__name__)
|
|
| 14 |
config = Config()
|
| 15 |
orchestrator = ChatOrchestrator(config, use_llm=True)
|
| 16 |
|
| 17 |
-
def process_query(message: str, history
|
| 18 |
"""Process user query and return response."""
|
| 19 |
try:
|
| 20 |
logger.info(f"Processing query: {message}")
|
|
|
|
| 14 |
config = Config()
|
| 15 |
orchestrator = ChatOrchestrator(config, use_llm=True)
|
| 16 |
|
| 17 |
+
def process_query(message: str, history) -> str:
|
| 18 |
"""Process user query and return response."""
|
| 19 |
try:
|
| 20 |
logger.info(f"Processing query: {message}")
|