Upload File

Warning

HFHubPHP currently does not support large files. Git LFS has not been implemented yet.

Method

$api->upload_file

Parameters

Example

Upload test.txt from disk and save it as hello.txt in the username/model model.

<?php
include 'hub.php';
$api = new Hub('hf_***');
$api->upload_file('username/repo', 'hello.txt', 'test.txt');