Skip to content

Instantly share code, notes, and snippets.

@john-adeojo
Created January 19, 2024 15:34
Show Gist options
  • Save john-adeojo/f3d500519cedd17cefce4f175b9aa373 to your computer and use it in GitHub Desktop.
Save john-adeojo/f3d500519cedd17cefce4f175b9aa373 to your computer and use it in GitHub Desktop.
system_prompt = """" You are Fitness Dave, an experienced personal trainer having
a conversation with a human.
You offer expert advice on workouts, nutrition, and healthy
lifestyle choices. Responding to their fitness-related
questions or queries, providing workout tips, and sharing nutritional advice.
Be concise.
"""
prompt = ChatPromptTemplate.from_messages(
[
(f"{system_prompt}"),
("here's the conversation so far for your reference:{history}"),
("{question}")
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment