inferless-cli


Nameinferless-cli JSON
Version 1.2.10 PyPI version JSON
download
home_pageNone
SummaryInferless - Deploy Machine Learning Models in Minutes.
upload_time2024-10-02 06:47:17
maintainerNone
docs_urlNone
authorNaveen
requires_python<4.0,>=3.8
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # `inferless-cli`

Inferless - Deploy Machine Learning Models in Minutes.

See the website at https://inferless.com/ for documentation and more information
about running code on Inferless.

**Usage**:

```console
$ inferless [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `-v, --version`
* `--help`: Show this message and exit.

**Commands**:

* `deploy`: Deploy a model to Inferless
* `export`: Export the runtime configuration of...
* `init`: Initialize a new Inferless model
* `log`: Inferless models logs (view build logs or...
* `login`: Login to Inferless
* `mode`: Change mode
* `model`: Manage Inferless models (list , delete ,...
* `remote-run`: Remotely run code on inferless
* `run`: Run a model locally
* `runtime`: Manage Inferless runtimes (can be used to...
* `secret`: Manage Inferless secrets (list secrets)
* `token`: Manage Inferless tokens
* `volume`: Manage Inferless volumes (can be used to...
* `workspace`: Manage Inferless workspaces (can be used...

## `inferless deploy`

Deploy a model to Inferless

**Usage**:

```console
$ inferless deploy [OPTIONS]
```

**Options**:

* `-c, --config TEXT`: Inferless config file path to override from inferless.yaml  [default: inferless.yaml]
* `--help`: Show this message and exit.

## `inferless export`

Export the runtime configuration of another provider to Inferless runtime config

**Usage**:

```console
$ inferless export [OPTIONS]
```

**Options**:

* `-r, --runtime TEXT`: The runtime configuration file of another provider  [default: cog.yaml]
* `-d, --destination TEXT`: The destination file for the Inferless runtime configuration  [default: inferless-runtime-config.yaml]
* `-f, --from TEXT`: The provider from which to export the runtime configuration  [default: replicate]
* `--help`: Show this message and exit.

## `inferless init`

Initialize a new Inferless model

**Usage**:

```console
$ inferless init [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

## `inferless log`

Inferless models logs (view build logs or call logs)

**Usage**:

```console
$ inferless log [OPTIONS] [MODEL_ID]
```

**Arguments**:

* `[MODEL_ID]`: Model id or model import id

**Options**:

* `-i, --import-logs`: Import logs
* `-t, --type TEXT`: Logs type [BUILD, CALL]]  [default: BUILD]
* `--help`: Show this message and exit.

## `inferless login`

Login to Inferless

**Usage**:

```console
$ inferless login [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

## `inferless mode`

Change mode

**Usage**:

```console
$ inferless mode [OPTIONS] MODE
```

**Arguments**:

* `MODE`: The mode to run the application in, either 'DEV' or 'PROD'.  [required]

**Options**:

* `--help`: Show this message and exit.

## `inferless model`

Manage Inferless models (list , delete , activate , deactivate , rebuild the models)

**Usage**:

```console
$ inferless model [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `--help`: Show this message and exit.

**Commands**:

* `activate`: activate a model.
* `deactivate`: deactivate a model.
* `delete`: delete a model.
* `info`: Get model details.
* `list`: List all models.
* `rebuild`: rebuild a model.

### `inferless model activate`

activate a model. 

**Usage**:

```console
$ inferless model activate [OPTIONS]
```

**Options**:

* `--model-id TEXT`: Model ID
* `--help`: Show this message and exit.

### `inferless model deactivate`

deactivate a model. 

**Usage**:

```console
$ inferless model deactivate [OPTIONS]
```

**Options**:

* `--model-id TEXT`: Model ID
* `--help`: Show this message and exit.

### `inferless model delete`

delete a model.

**Usage**:

```console
$ inferless model delete [OPTIONS]
```

**Options**:

* `--model-id TEXT`: Model ID
* `--help`: Show this message and exit.

### `inferless model info`

Get model details.

**Usage**:

```console
$ inferless model info [OPTIONS]
```

**Options**:

* `--model-id TEXT`: Model ID
* `--help`: Show this message and exit.

### `inferless model list`

List all models.

**Usage**:

```console
$ inferless model list [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

### `inferless model rebuild`

rebuild a model. (If you have a inferless.yaml file in your current directory, you can use the --local or -l flag to redeploy the model locally.)

**Usage**:

```console
$ inferless model rebuild [OPTIONS]
```

**Options**:

* `--model-id TEXT`: Model ID
* `-l, --local`: Local rebuild
* `--help`: Show this message and exit.

## `inferless remote-run`

Remotely run code on inferless

**Usage**:

```console
$ inferless remote-run [OPTIONS] [FILE_PATH]
```

**Arguments**:

* `[FILE_PATH]`: The path to the file to run on Inferless

**Options**:

* `-c, --config TEXT`: The path to the Inferless config file
* `-e, --exclude TEXT`: The path to the file to exclude from the run, use .gitignore format. If not provided, .gitignore will be used if present in the directory.
* `--help`: Show this message and exit.

## `inferless run`

Run a model locally

**Usage**:

```console
$ inferless run [OPTIONS]
```

**Options**:

* `-r, --runtime TEXT`: custom runtime config file path to override from inferless-runtime-config.yaml
* `-t, --type TEXT`: Type of runtime to run [inferless, replicate]
* `-n, --name TEXT`: Name of the model to deploy on inferless  [default: inferless-model]
* `-f, --env-file TEXT`: Path to an env file containing environment variables (one per line in KEY=VALUE format)
* `-e, --env TEXT`: Environment variables to set for the runtime (e.g. 'KEY=VALUE'). If the env variable contains special chars please escape them.
* `-u, --docker-base-url TEXT`: Docker base url. Defaults to system default, feteched from env
* `--help`: Show this message and exit.

## `inferless runtime`

Manage Inferless runtimes (can be used to list runtimes and upload new runtimes)

**Usage**:

```console
$ inferless runtime [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `--help`: Show this message and exit.

**Commands**:

* `generate`: use to generate a new runtime from your...
* `list`: List all runtimes.
* `patch`: Patch a runtime.
* `select`: use to update the runtime in inferless...
* `upload`: Upload a runtime.
* `version-list`: use to list the runtime versions

### `inferless runtime generate`

use to generate a new runtime from your local environment

**Usage**:

```console
$ inferless runtime generate [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

### `inferless runtime list`

List all runtimes.

**Usage**:

```console
$ inferless runtime list [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

### `inferless runtime patch`

Patch a runtime.

**Usage**:

```console
$ inferless runtime patch [OPTIONS]
```

**Options**:

* `-p, --path TEXT`: Path to the runtime
* `-i, --id TEXT`: ID of the runtime
* `--help`: Show this message and exit.

### `inferless runtime select`

use to update the runtime in inferless config file

**Usage**:

```console
$ inferless runtime select [OPTIONS]
```

**Options**:

* `-p, --path TEXT`: Path to the inferless config file (inferless.yaml)
* `-i, --id TEXT`: runtime id
* `--help`: Show this message and exit.

### `inferless runtime upload`

Upload a runtime.

**Usage**:

```console
$ inferless runtime upload [OPTIONS]
```

**Options**:

* `-p, --path TEXT`: Path to the runtime
* `-n, --name TEXT`: Name of the runtime
* `--help`: Show this message and exit.

### `inferless runtime version-list`

use to list the runtime versions

**Usage**:

```console
$ inferless runtime version-list [OPTIONS]
```

**Options**:

* `-i, --id TEXT`: runtime id
* `--help`: Show this message and exit.

## `inferless secret`

Manage Inferless secrets (list secrets)

**Usage**:

```console
$ inferless secret [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `--help`: Show this message and exit.

**Commands**:

* `list`: List all secrets.

### `inferless secret list`

List all secrets.

**Usage**:

```console
$ inferless secret list [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

## `inferless token`

Manage Inferless tokens

**Usage**:

```console
$ inferless token [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `--help`: Show this message and exit.

**Commands**:

* `set`: Set account credentials for connecting to...

### `inferless token set`

Set account credentials for connecting to Inferless. If not provided with the command, you will be prompted to enter your credentials.

**Usage**:

```console
$ inferless token set [OPTIONS]
```

**Options**:

* `--token-key TEXT`: Account CLI key  [required]
* `--token-secret TEXT`: Account CLI secret  [required]
* `--help`: Show this message and exit.

## `inferless volume`

Manage Inferless volumes (can be used to list volumes and create new volumes)

**Usage**:

```console
$ inferless volume [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `--help`: Show this message and exit.

**Commands**:

* `cp`: Add a file or directory to a volume.
* `create`: Create a new volume
* `list`: List all existing volumes
* `ls`: List files and directories within a volume
* `rm`: Specify the Inferless path to the file or...
* `select`: Select a volume for updates in the...

### `inferless volume cp`

Add a file or directory to a volume.

**Usage**:

```console
$ inferless volume cp [OPTIONS]
```

**Options**:

* `-s, --source TEXT`: Specify the source path (either a local directory/file path or an Inferless path)
* `-d, --destination TEXT`: Specify the destination path (either a local directory/file path or an Inferless path)
* `-r, --recursive`: Recursively copy the contents of a directory to the destination.
* `--help`: Show this message and exit.

### `inferless volume create`

Create a new volume

**Usage**:

```console
$ inferless volume create [OPTIONS]
```

**Options**:

* `-n, --name TEXT`: Assign a name to the new volume.
* `--help`: Show this message and exit.

### `inferless volume list`

List all existing volumes

**Usage**:

```console
$ inferless volume list [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

### `inferless volume ls`

List files and directories within a volume

**Usage**:

```console
$ inferless volume ls [OPTIONS]
```

**Options**:

* `-i, --id TEXT`: Specify the ID of the volume to list.
* `-p, --path TEXT`: Define a specific directory path within the volume. Defaults to the root directory if not specified.
* `-d, --directory`: List only directories.
* `-f, --files`: List only files.
* `-r, --recursive`: Recursively list contents of directories.
* `--help`: Show this message and exit.

### `inferless volume rm`

Specify the Inferless path to the file or directory you want to delete.

**Usage**:

```console
$ inferless volume rm [OPTIONS]
```

**Options**:

* `-p, --path TEXT`: Infer Path to the file/dir your want to delete
* `--help`: Show this message and exit.

### `inferless volume select`

Select a volume for updates in the Inferless configuration.

**Usage**:

```console
$ inferless volume select [OPTIONS]
```

**Options**:

* `-p, --path TEXT`: Path to the Inferless configuration file (typically inferless.yaml)
* `-i, --id TEXT`: The ID of the volume to select.
* `--help`: Show this message and exit.

## `inferless workspace`

Manage Inferless workspaces (can be used to switch between workspaces)

**Usage**:

```console
$ inferless workspace [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `--help`: Show this message and exit.

**Commands**:

* `use`

### `inferless workspace use`

**Usage**:

```console
$ inferless workspace use [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "inferless-cli",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Naveen",
    "author_email": "naveen@inferless.com",
    "download_url": "https://files.pythonhosted.org/packages/57/7e/7d925de1ccaaf57c9590813e85e6a480292cb0bb2083b6035dc1b2763154/inferless_cli-1.2.10.tar.gz",
    "platform": null,
    "description": "# `inferless-cli`\n\nInferless - Deploy Machine Learning Models in Minutes.\n\nSee the website at https://inferless.com/ for documentation and more information\nabout running code on Inferless.\n\n**Usage**:\n\n```console\n$ inferless [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `-v, --version`\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `deploy`: Deploy a model to Inferless\n* `export`: Export the runtime configuration of...\n* `init`: Initialize a new Inferless model\n* `log`: Inferless models logs (view build logs or...\n* `login`: Login to Inferless\n* `mode`: Change mode\n* `model`: Manage Inferless models (list , delete ,...\n* `remote-run`: Remotely run code on inferless\n* `run`: Run a model locally\n* `runtime`: Manage Inferless runtimes (can be used to...\n* `secret`: Manage Inferless secrets (list secrets)\n* `token`: Manage Inferless tokens\n* `volume`: Manage Inferless volumes (can be used to...\n* `workspace`: Manage Inferless workspaces (can be used...\n\n## `inferless deploy`\n\nDeploy a model to Inferless\n\n**Usage**:\n\n```console\n$ inferless deploy [OPTIONS]\n```\n\n**Options**:\n\n* `-c, --config TEXT`: Inferless config file path to override from inferless.yaml  [default: inferless.yaml]\n* `--help`: Show this message and exit.\n\n## `inferless export`\n\nExport the runtime configuration of another provider to Inferless runtime config\n\n**Usage**:\n\n```console\n$ inferless export [OPTIONS]\n```\n\n**Options**:\n\n* `-r, --runtime TEXT`: The runtime configuration file of another provider  [default: cog.yaml]\n* `-d, --destination TEXT`: The destination file for the Inferless runtime configuration  [default: inferless-runtime-config.yaml]\n* `-f, --from TEXT`: The provider from which to export the runtime configuration  [default: replicate]\n* `--help`: Show this message and exit.\n\n## `inferless init`\n\nInitialize a new Inferless model\n\n**Usage**:\n\n```console\n$ inferless init [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n## `inferless log`\n\nInferless models logs (view build logs or call logs)\n\n**Usage**:\n\n```console\n$ inferless log [OPTIONS] [MODEL_ID]\n```\n\n**Arguments**:\n\n* `[MODEL_ID]`: Model id or model import id\n\n**Options**:\n\n* `-i, --import-logs`: Import logs\n* `-t, --type TEXT`: Logs type [BUILD, CALL]]  [default: BUILD]\n* `--help`: Show this message and exit.\n\n## `inferless login`\n\nLogin to Inferless\n\n**Usage**:\n\n```console\n$ inferless login [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n## `inferless mode`\n\nChange mode\n\n**Usage**:\n\n```console\n$ inferless mode [OPTIONS] MODE\n```\n\n**Arguments**:\n\n* `MODE`: The mode to run the application in, either 'DEV' or 'PROD'.  [required]\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n## `inferless model`\n\nManage Inferless models (list , delete , activate , deactivate , rebuild the models)\n\n**Usage**:\n\n```console\n$ inferless model [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `activate`: activate a model.\n* `deactivate`: deactivate a model.\n* `delete`: delete a model.\n* `info`: Get model details.\n* `list`: List all models.\n* `rebuild`: rebuild a model.\n\n### `inferless model activate`\n\nactivate a model. \n\n**Usage**:\n\n```console\n$ inferless model activate [OPTIONS]\n```\n\n**Options**:\n\n* `--model-id TEXT`: Model ID\n* `--help`: Show this message and exit.\n\n### `inferless model deactivate`\n\ndeactivate a model. \n\n**Usage**:\n\n```console\n$ inferless model deactivate [OPTIONS]\n```\n\n**Options**:\n\n* `--model-id TEXT`: Model ID\n* `--help`: Show this message and exit.\n\n### `inferless model delete`\n\ndelete a model.\n\n**Usage**:\n\n```console\n$ inferless model delete [OPTIONS]\n```\n\n**Options**:\n\n* `--model-id TEXT`: Model ID\n* `--help`: Show this message and exit.\n\n### `inferless model info`\n\nGet model details.\n\n**Usage**:\n\n```console\n$ inferless model info [OPTIONS]\n```\n\n**Options**:\n\n* `--model-id TEXT`: Model ID\n* `--help`: Show this message and exit.\n\n### `inferless model list`\n\nList all models.\n\n**Usage**:\n\n```console\n$ inferless model list [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n### `inferless model rebuild`\n\nrebuild a model. (If you have a inferless.yaml file in your current directory, you can use the --local or -l flag to redeploy the model locally.)\n\n**Usage**:\n\n```console\n$ inferless model rebuild [OPTIONS]\n```\n\n**Options**:\n\n* `--model-id TEXT`: Model ID\n* `-l, --local`: Local rebuild\n* `--help`: Show this message and exit.\n\n## `inferless remote-run`\n\nRemotely run code on inferless\n\n**Usage**:\n\n```console\n$ inferless remote-run [OPTIONS] [FILE_PATH]\n```\n\n**Arguments**:\n\n* `[FILE_PATH]`: The path to the file to run on Inferless\n\n**Options**:\n\n* `-c, --config TEXT`: The path to the Inferless config file\n* `-e, --exclude TEXT`: The path to the file to exclude from the run, use .gitignore format. If not provided, .gitignore will be used if present in the directory.\n* `--help`: Show this message and exit.\n\n## `inferless run`\n\nRun a model locally\n\n**Usage**:\n\n```console\n$ inferless run [OPTIONS]\n```\n\n**Options**:\n\n* `-r, --runtime TEXT`: custom runtime config file path to override from inferless-runtime-config.yaml\n* `-t, --type TEXT`: Type of runtime to run [inferless, replicate]\n* `-n, --name TEXT`: Name of the model to deploy on inferless  [default: inferless-model]\n* `-f, --env-file TEXT`: Path to an env file containing environment variables (one per line in KEY=VALUE format)\n* `-e, --env TEXT`: Environment variables to set for the runtime (e.g. 'KEY=VALUE'). If the env variable contains special chars please escape them.\n* `-u, --docker-base-url TEXT`: Docker base url. Defaults to system default, feteched from env\n* `--help`: Show this message and exit.\n\n## `inferless runtime`\n\nManage Inferless runtimes (can be used to list runtimes and upload new runtimes)\n\n**Usage**:\n\n```console\n$ inferless runtime [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `generate`: use to generate a new runtime from your...\n* `list`: List all runtimes.\n* `patch`: Patch a runtime.\n* `select`: use to update the runtime in inferless...\n* `upload`: Upload a runtime.\n* `version-list`: use to list the runtime versions\n\n### `inferless runtime generate`\n\nuse to generate a new runtime from your local environment\n\n**Usage**:\n\n```console\n$ inferless runtime generate [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n### `inferless runtime list`\n\nList all runtimes.\n\n**Usage**:\n\n```console\n$ inferless runtime list [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n### `inferless runtime patch`\n\nPatch a runtime.\n\n**Usage**:\n\n```console\n$ inferless runtime patch [OPTIONS]\n```\n\n**Options**:\n\n* `-p, --path TEXT`: Path to the runtime\n* `-i, --id TEXT`: ID of the runtime\n* `--help`: Show this message and exit.\n\n### `inferless runtime select`\n\nuse to update the runtime in inferless config file\n\n**Usage**:\n\n```console\n$ inferless runtime select [OPTIONS]\n```\n\n**Options**:\n\n* `-p, --path TEXT`: Path to the inferless config file (inferless.yaml)\n* `-i, --id TEXT`: runtime id\n* `--help`: Show this message and exit.\n\n### `inferless runtime upload`\n\nUpload a runtime.\n\n**Usage**:\n\n```console\n$ inferless runtime upload [OPTIONS]\n```\n\n**Options**:\n\n* `-p, --path TEXT`: Path to the runtime\n* `-n, --name TEXT`: Name of the runtime\n* `--help`: Show this message and exit.\n\n### `inferless runtime version-list`\n\nuse to list the runtime versions\n\n**Usage**:\n\n```console\n$ inferless runtime version-list [OPTIONS]\n```\n\n**Options**:\n\n* `-i, --id TEXT`: runtime id\n* `--help`: Show this message and exit.\n\n## `inferless secret`\n\nManage Inferless secrets (list secrets)\n\n**Usage**:\n\n```console\n$ inferless secret [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `list`: List all secrets.\n\n### `inferless secret list`\n\nList all secrets.\n\n**Usage**:\n\n```console\n$ inferless secret list [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n## `inferless token`\n\nManage Inferless tokens\n\n**Usage**:\n\n```console\n$ inferless token [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `set`: Set account credentials for connecting to...\n\n### `inferless token set`\n\nSet account credentials for connecting to Inferless. If not provided with the command, you will be prompted to enter your credentials.\n\n**Usage**:\n\n```console\n$ inferless token set [OPTIONS]\n```\n\n**Options**:\n\n* `--token-key TEXT`: Account CLI key  [required]\n* `--token-secret TEXT`: Account CLI secret  [required]\n* `--help`: Show this message and exit.\n\n## `inferless volume`\n\nManage Inferless volumes (can be used to list volumes and create new volumes)\n\n**Usage**:\n\n```console\n$ inferless volume [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `cp`: Add a file or directory to a volume.\n* `create`: Create a new volume\n* `list`: List all existing volumes\n* `ls`: List files and directories within a volume\n* `rm`: Specify the Inferless path to the file or...\n* `select`: Select a volume for updates in the...\n\n### `inferless volume cp`\n\nAdd a file or directory to a volume.\n\n**Usage**:\n\n```console\n$ inferless volume cp [OPTIONS]\n```\n\n**Options**:\n\n* `-s, --source TEXT`: Specify the source path (either a local directory/file path or an Inferless path)\n* `-d, --destination TEXT`: Specify the destination path (either a local directory/file path or an Inferless path)\n* `-r, --recursive`: Recursively copy the contents of a directory to the destination.\n* `--help`: Show this message and exit.\n\n### `inferless volume create`\n\nCreate a new volume\n\n**Usage**:\n\n```console\n$ inferless volume create [OPTIONS]\n```\n\n**Options**:\n\n* `-n, --name TEXT`: Assign a name to the new volume.\n* `--help`: Show this message and exit.\n\n### `inferless volume list`\n\nList all existing volumes\n\n**Usage**:\n\n```console\n$ inferless volume list [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n### `inferless volume ls`\n\nList files and directories within a volume\n\n**Usage**:\n\n```console\n$ inferless volume ls [OPTIONS]\n```\n\n**Options**:\n\n* `-i, --id TEXT`: Specify the ID of the volume to list.\n* `-p, --path TEXT`: Define a specific directory path within the volume. Defaults to the root directory if not specified.\n* `-d, --directory`: List only directories.\n* `-f, --files`: List only files.\n* `-r, --recursive`: Recursively list contents of directories.\n* `--help`: Show this message and exit.\n\n### `inferless volume rm`\n\nSpecify the Inferless path to the file or directory you want to delete.\n\n**Usage**:\n\n```console\n$ inferless volume rm [OPTIONS]\n```\n\n**Options**:\n\n* `-p, --path TEXT`: Infer Path to the file/dir your want to delete\n* `--help`: Show this message and exit.\n\n### `inferless volume select`\n\nSelect a volume for updates in the Inferless configuration.\n\n**Usage**:\n\n```console\n$ inferless volume select [OPTIONS]\n```\n\n**Options**:\n\n* `-p, --path TEXT`: Path to the Inferless configuration file (typically inferless.yaml)\n* `-i, --id TEXT`: The ID of the volume to select.\n* `--help`: Show this message and exit.\n\n## `inferless workspace`\n\nManage Inferless workspaces (can be used to switch between workspaces)\n\n**Usage**:\n\n```console\n$ inferless workspace [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `use`\n\n### `inferless workspace use`\n\n**Usage**:\n\n```console\n$ inferless workspace use [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Inferless - Deploy Machine Learning Models in Minutes.",
    "version": "1.2.10",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36351c6d0ec2fddaa1e7f4e3cb2e264e3a9cf856161e9c3aa6eab6648abf91b6",
                "md5": "027993cc77b8032911a146dc192b2f24",
                "sha256": "5557d6d670896f8b7e41b1f0238b3c2e73039818421777282c964d87c6fcc718"
            },
            "downloads": -1,
            "filename": "inferless_cli-1.2.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "027993cc77b8032911a146dc192b2f24",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 64725,
            "upload_time": "2024-10-02T06:47:15",
            "upload_time_iso_8601": "2024-10-02T06:47:15.255509Z",
            "url": "https://files.pythonhosted.org/packages/36/35/1c6d0ec2fddaa1e7f4e3cb2e264e3a9cf856161e9c3aa6eab6648abf91b6/inferless_cli-1.2.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "577e7d925de1ccaaf57c9590813e85e6a480292cb0bb2083b6035dc1b2763154",
                "md5": "ac1687f3612f30297b3a2119371278be",
                "sha256": "7afe898fa43de899d0ab06eccd01f28f21b4e9af3ebc9149ad276a8a59e4ce96"
            },
            "downloads": -1,
            "filename": "inferless_cli-1.2.10.tar.gz",
            "has_sig": false,
            "md5_digest": "ac1687f3612f30297b3a2119371278be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 51463,
            "upload_time": "2024-10-02T06:47:17",
            "upload_time_iso_8601": "2024-10-02T06:47:17.759119Z",
            "url": "https://files.pythonhosted.org/packages/57/7e/7d925de1ccaaf57c9590813e85e6a480292cb0bb2083b6035dc1b2763154/inferless_cli-1.2.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-02 06:47:17",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "inferless-cli"
}
        
Elapsed time: 0.35464s