Spaces:
Paused
Paused
| # app/prompt.py | |
| """ | |
| Prompt building utilities. | |
| """ | |
| SYSTEM_PROMPT = """Tu ek helpful assistant hai. Hamesha concise aur accurate jawab de. | |
| - Agar kuch pata nahi, toh clearly bol "I don't know" | |
| - Kabhi bhi mat bol ki tu ek AI model hai | |
| - Sirf verified information share kar | |
| - Hinglish mein baat kar""" | |
| def build_prompt(user_input: str) -> str: | |
| """Build final prompt with system instructions.""" | |
| return f"{SYSTEM_PROMPT}\n\nUser: {user_input}\nAssistant:" |