We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31df8ef commit 9209229Copy full SHA for 9209229
balrog/prompt_builder/history.py
@@ -82,6 +82,8 @@ def get_prompt(self) -> List[Message]:
82
List[Message]: Messages constructed from the event history.
83
"""
84
messages = []
85
+ if self.system_prompt:
86
+ messages.append(Message(role="user", content=self.system_prompt))
87
88
# Determine which images to include
89
images_needed = self.max_image_history
0 commit comments