Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
b289zhan
/
OntoChat
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
OntoChat
/
ontochat
/
utils.py
Bohui Zhang
Update the third version
9abf365
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
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