Spaces:
Running
Running
Upload app.py
Browse files- 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 |
-
"You
|
| 539 |
"Further access is restricted.\n\n"
|
| 540 |
"Please contact the administrator for extended access:\n"
|
| 541 |
-
"LinkedIn:
|
| 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
|