File size: 388 Bytes
98cce0f
 
 
 
 
 
 
 
 
 
 
7f2eb77
 
98cce0f
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from huggingface_hub import Repository
from huggingface_hub import login
import os

def load_dataset():
    login(token = os.environ['HUB_TOKEN'])

    repo = Repository(
        local_dir="agent_function",
        repo_type="dataset",
        clone_from="gheng/bnm_scam_awareness",
        token=True,
        git_email='zhiheng_dev@dahreply.ai'
    )
    repo.git_pull()

load_dataset()