返回 DeepSeek-Reasonix
textload.py
1 def load_text(path):
2 """File contents as text; byte-order marks must not leak into the data."""
3 with open(path, encoding="utf-8") as f:
4 return f.read()
5
5 lines PYTHON