-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem_solver.txt
More file actions
16 lines (11 loc) · 984 Bytes
/
Copy pathproblem_solver.txt
File metadata and controls
16 lines (11 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
bolo "--- 🤖 Maliklang AI Problem Solver Live 🤖 ---"
bolo "Bhai, apni pareshani niche likho, AI solution dhundhega..."
# यूजर से उसकी समस्या पूछना
pareshani pucho "Aapki problem kya hai? (Type karein): "
bolo "Thoda sabar karo, AI sabse best solution nikal raha hai..."
# बिना Main.py badle directly AI engine se connect karne ki trick
banao hal = __import__('requests').get('https://openrouter.ai', headers={'Authorization': 'Bearer YOUR_API_KEY'}, json={'model': 'google/gemini-2.5-flash', 'messages': [{'role': 'system', 'content': 'You are a helpful assistant. Give quick, step-by-step solutions in simple Hinglish language.'}, {'role': 'user', 'content': pareshani}]}).json()['choices']['message']['content']
# AI का निकाला हुआ समाधान स्क्रीन पर दिखाना
bolo "--- AI Ka Solution Ye Hai Bhai: ---"
bolo hal
bolo "Maliklang Global Problem Solver Test Pass!"