(subject)
| 20 | return valid_substrings |
| 21 | |
| 22 | def format_subject(subject): |
| 23 | l = subject.split("_") |
| 24 | s = "" |
| 25 | for entry in l: |
| 26 | s += " " + entry |
| 27 | return s |
| 28 | |
| 29 | def format_example(df, idx, include_answer=True): |
| 30 | prompt = df.iloc[idx, 0] |
nothing calls this directly
no outgoing calls
no test coverage detected