(subject)
| 54 | return parser |
| 55 | |
| 56 | def format_subject(subject): |
| 57 | l = subject.split("_") |
| 58 | s = "" |
| 59 | for entry in l: |
| 60 | s += " " + entry |
| 61 | return s |
| 62 | |
| 63 | def format_example(df, idx, include_answer=True): |
| 64 | prompt = df.iloc[idx, 0] |
no outgoing calls
no test coverage detected