(path: str)
| 27 | f.write(line+"\n") |
| 28 | |
| 29 | def read_txt(path: str): |
| 30 | with open(path, "r", encoding="utf-8") as f: |
| 31 | return f.readlines() |
| 32 | |
| 33 | |
| 34 | def process_llm_batch(item_batch, llm_processer, ref_kg_path): |
no outgoing calls
no test coverage detected