notsakeeb's picture
Upload 3 files
e552ac2 verified
raw
history blame
268 Bytes
def read_txt_file(file_path):
try:
with open(file_path, 'r', encoding='utf-8') as file:
system_prompt = file.read()
return system_prompt
except Exception as e:
print(f"Error while reading file: {e}")
return ""