OntoChat / ontochat /utils.py
Bohui Zhang
Update the third version
9abf365
raw
history blame contribute delete
163 Bytes
"""
General-purpose utility functions.
"""
def read_key(file_path: str = "key.txt"):
with open(file_path, "r") as fo:
key = fo.read()
return key