in src/base.py [0:0]
def render_system_prompt(self):
return f"\n{SEPARATOR_TOKEN}".join(
[self.header.render()]
+ [Message("System", "Example conversations:").render()]
+ [conversation.render() for conversation in self.examples]
+ [
Message(
"System", "Now, you will work with the actual current conversation."
).render()
]
)