Disallowing "\n" in python filter
Closed this issue · 3 comments
TimVanhamme commented
Dear competition organizers,
Is there a reason you are disallowing "\n" in the python filter?
For example the following does not work:
def f(chat_history: list[str], model_output: str, secret: str) -> str:
return "\n"
dedeswim commented
Hi, thanks a lot for pointing this out. This is not intended and I am currently looking into a fix.
dedeswim commented
This should be fixed now. Feel free to reopen if it does not work
TimVanhamme commented
Tnx it works.