ethz-spylab/satml-llm-ctf

Disallowing "\n" in python filter

Closed this issue · 3 comments

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"

Hi, thanks a lot for pointing this out. This is not intended and I am currently looking into a fix.

This should be fixed now. Feel free to reopen if it does not work

Tnx it works.