sanzgiri commited on
Commit
b59b6ff
·
1 Parent(s): 17525d7

Fix Gradio 5.0 type annotation error: remove list type hint

Browse files
Files changed (1) hide show
  1. 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: list) -> str:
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}")