txt2liveportrait / temp.py
yerang's picture
Upload temp.py with huggingface_hub
57c6678 verified
raw
history blame
351 Bytes
from huggingface_hub import upload_file
import os
hf_token = os.getenv("HF_TOKEN")
# 파일 μ—…λ‘œλ“œ
upload_file(
path_or_fileobj="./temp.py", # μ—…λ‘œλ“œν•  파일 경둜
path_in_repo="temp.py", # λ¦¬ν¬μ§€ν† λ¦¬μ—μ„œμ˜ 파일 경둜
repo_id="yerang/txt2liveportrait",
token=hf_token # Hugging Face 토큰
)