Spaces:
Sleeping
Sleeping
File size: 277 Bytes
2b011a9 |
1 2 3 4 5 6 7 8 9 10 11 12 |
def build_prompt(diet_type, goal, pdf_text, user_question):
return f"""You are a nutrition chatbot.
Diet preference: {diet_type}
Goal: {goal}
Context from uploaded meal plan documents:
{pdf_text[:1500]} # keep it short to avoid truncation
User: {user_question}
Bot:"""
|