coder-agent / app /prompt.py
Karan6933's picture
Upload 8 files
05944f9 verified
raw
history blame contribute delete
463 Bytes
# 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:"