from huggingface_hub import HfApi api = HfApi() # List all files in the repo files = api.list_repo_files("SeccondDefense/DeepSeek-Coder-V2-Instruct-0724-Q5_K_M") print("Files in repo:") for f in files: print(f)