You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some prompt templates, there is logic like this:
{% set seq = [
''Answer the question depending on the context.'',
''What is the answer?'',
] %}
{{ seq | choice }}
Context: {{context}};
Question: {{question}};
...
This makes it so that one prompt is effectively multiple prompts. We should "serialize" them into separate templates.
The text was updated successfully, but these errors were encountered:
In some prompt templates, there is logic like this:
This makes it so that one prompt is effectively multiple prompts. We should "serialize" them into separate templates.
The text was updated successfully, but these errors were encountered: