Vishwanath77 commited on
Commit
d5508ff
·
verified ·
1 Parent(s): fa4d085

Upload app.py

Browse files
Files changed (1) hide show
  1. src/apps/app.py +3 -3
src/apps/app.py CHANGED
@@ -534,11 +534,11 @@ async def conversational_chat(websocket: WebSocket, role: Optional[str] = None):
534
  # --- USAGE LIMIT CHECK ---
535
  if token_role != "Admin" and question_count >= 2:
536
  limit_message = (
537
- "### Free usage limit reached\n\n"
538
- "Youve reached the free usage limit (2 questions).\n"
539
  "Further access is restricted.\n\n"
540
  "Please contact the administrator for extended access:\n"
541
- "LinkedIn: [https://www.linkedin.com/in/vishwanath77](https://www.linkedin.com/in/vishwanath77)"
542
  )
543
  await websocket.send_text(limit_message)
544
  continue
 
534
  # --- USAGE LIMIT CHECK ---
535
  if token_role != "Admin" and question_count >= 2:
536
  limit_message = (
537
+ "### Free usage limit reached\n\n"
538
+ "You've reached the free usage limit (2 questions).\n"
539
  "Further access is restricted.\n\n"
540
  "Please contact the administrator for extended access:\n"
541
+ "LinkedIn: https://www.linkedin.com/in/vishwanath77"
542
  )
543
  await websocket.send_text(limit_message)
544
  continue