Upload app.py
Browse files
app.py
CHANGED
|
@@ -978,7 +978,8 @@ Provide a helpful, intelligent response using the challenge data context and ack
|
|
| 978 |
response += f" 📍 **Available on Topcoder platform**\n\n"
|
| 979 |
|
| 980 |
# Add some insights
|
| 981 |
-
if 'prize' in message_lower or 'money' in message_lower or 'pay' in message_lower:
|
|
|
|
| 982 |
|
| 983 |
# Initialize the enhanced intelligence engine
|
| 984 |
print("🚀 Starting ULTIMATE Topcoder Intelligence Assistant...")
|
|
|
|
| 978 |
response += f" 📍 **Available on Topcoder platform**\n\n"
|
| 979 |
|
| 980 |
# Add some insights
|
| 981 |
+
if any('prize' in message_lower or 'money' in message_lower or 'pay' in message_lower for _ in [None]):
|
| 982 |
+
prizes = [int(c.prize.replace('
|
| 983 |
|
| 984 |
# Initialize the enhanced intelligence engine
|
| 985 |
print("🚀 Starting ULTIMATE Topcoder Intelligence Assistant...")
|