Metadata-Version: 2.1
Name: fuego
Version: 0.0.6rc0
Summary: Fuego
Home-page: https://github.com/huggingface/fuego
Author: Nathan Raw
Author-email: nate@huggingface.com
License: Apache
Description-Content-Type: text/markdown
Provides-Extra: azureml
License-File: LICENSE

# fuego

A 🔥 tool for running code in the cloud

### Note

❗ **This project is just an _idea_ right now and is being actively developed** ❗

## The idea

A unified interface to view/manage runs, compute instances, data, etc. across your authenticated cloud providers.

Currently, this project only works for AzureML training runs. The idea is to support other cloud providers (AWS, GCP, etc.) and other run types (inference, data preparation, etc.) in the future.

## Installation

For now, you can install from source:

```bash
git clone https://github.com/huggingface/fuego.git
cd fuego
pip install -e ".[azureml]"
```

## WIP API

The Python API and CLI should have very similar experiences so folks can use whichever they prefer.

#### Python


```python
import fuego

fuego.run(
    # Fuego Run Args - these are the same across providers
    script='./examples/simple_example_with_requirements/run.py',
    provider='azureml',
    instance_type='cpu',
    instance_count=1,
    requirements_file='./examples/simple_example_with_requirements/requirements.txt',
    # Script kwargs - these are passed to the script as argparse args
    message='Howdy, world!',
)
```

#### CLI

```
fuego run \
    --provider azureml \
    --instance-type cpu \
    --instance-count 1 \
    --requirements-file ./examples/simple_example_with_requirements/requirements.txt \
    ./examples/simple_example_with_requirements/run.py \
    --message "'Howdy, world!'"
```
