(file, contents)
| 77 | f.writelines(lines) |
| 78 | |
| 79 | def writetext_to_file(file, contents): |
| 80 | with open(file, 'w', encoding='utf8') as f: |
| 81 | f.write(contents) |
| 82 | |
| 83 | def eval(args, subject, dev_df, test_df): |
| 84 | logfile = "chatgptestlogfile0512" |
nothing calls this directly
no outgoing calls
no test coverage detected