Metadata-Version: 2.1
Name: runhouse
Version: 0.0.21
Summary: Runhouse: A multiplayer cloud compute and data environment
Author: Runhouse Team
License: Apache 2.0
Project-URL: Homepage, https://run.house
Project-URL: Issues, https://github.com/run-house/runhouse/issues/
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dotenv
Requires-Dist: fastapi
Requires-Dist: fsspec<=2023.5.0
Requires-Dist: opentelemetry-api
Requires-Dist: opentelemetry-exporter-otlp-proto-http
Requires-Dist: opentelemetry-instrumentation
Requires-Dist: opentelemetry-instrumentation-fastapi
Requires-Dist: opentelemetry-instrumentation-requests
Requires-Dist: opentelemetry-sdk
Requires-Dist: pexpect
Requires-Dist: pyOpenSSL>=23.3.0
Requires-Dist: ray[default]!=2.6.0,<=2.6.3,>=2.2.0
Requires-Dist: rich
Requires-Dist: sentry-sdk
Requires-Dist: sshfs<=2023.4.1,>=2023.1.0
Requires-Dist: typer
Requires-Dist: uvicorn
Requires-Dist: wheel
Requires-Dist: apispec
Provides-Extra: sky
Requires-Dist: skypilot==0.5.0; extra == "sky"
Provides-Extra: data
Requires-Dist: pandas; extra == "data"
Requires-Dist: pyarrow; extra == "data"
Provides-Extra: aws
Requires-Dist: skypilot[aws]==0.5.0; extra == "aws"
Requires-Dist: pycryptodome==3.12.0; extra == "aws"
Requires-Dist: sshtunnel>=0.3.0; extra == "aws"
Provides-Extra: azure
Requires-Dist: skypilot[azure]==0.5.0; extra == "azure"
Provides-Extra: gcp
Requires-Dist: skypilot[gcp]==0.5.0; extra == "gcp"
Requires-Dist: gcsfs; extra == "gcp"
Provides-Extra: docker
Requires-Dist: docker; extra == "docker"
Provides-Extra: sagemaker
Requires-Dist: skypilot==0.5.0; extra == "sagemaker"
Requires-Dist: sagemaker_ssh_helper; extra == "sagemaker"
Requires-Dist: sagemaker; extra == "sagemaker"
Requires-Dist: paramiko>=3.2.0; extra == "sagemaker"
Provides-Extra: kubernetes
Requires-Dist: skypilot==0.5.0; extra == "kubernetes"
Requires-Dist: kubernetes; extra == "kubernetes"
Provides-Extra: all
Requires-Dist: skypilot==0.5.0; extra == "all"
Requires-Dist: pandas; extra == "all"
Requires-Dist: pyarrow; extra == "all"
Requires-Dist: skypilot[aws]==0.5.0; extra == "all"
Requires-Dist: pycryptodome==3.12.0; extra == "all"
Requires-Dist: sshtunnel>=0.3.0; extra == "all"
Requires-Dist: skypilot[azure]==0.5.0; extra == "all"
Requires-Dist: skypilot[gcp]==0.5.0; extra == "all"
Requires-Dist: gcsfs; extra == "all"
Requires-Dist: docker; extra == "all"
Requires-Dist: skypilot==0.5.0; extra == "all"
Requires-Dist: sagemaker_ssh_helper; extra == "all"
Requires-Dist: sagemaker; extra == "all"
Requires-Dist: paramiko>=3.2.0; extra == "all"
Requires-Dist: skypilot==0.5.0; extra == "all"
Requires-Dist: kubernetes; extra == "all"

# 🏃‍♀️Runhouse🏠

[![Discord](https://dcbadge.vercel.app/api/server/RnhB6589Hs?compact=true&style=flat)](https://discord.gg/RnhB6589Hs)
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/runhouse_.svg?style=social&label=@runhouse_)](https://twitter.com/runhouse_)
[![Website](https://img.shields.io/badge/run.house-green)](https://www.run.house)
[![Docs](https://img.shields.io/badge/docs-blue)](https://www.run.house/docs)
[![Den](https://img.shields.io/badge/runhouse_den-purple)](https://www.run.house/login)

## 👵 Welcome Home!

Runhouse is the fastest way to build, run, and deploy production-quality AI apps and workflows on your own compute.
Leverage simple, powerful APIs for the full lifecycle of AI development, through
research→evaluation→production→updates→scaling→management, and across any infra.

By automatically packaging your apps into scalable, secure, and observable services, Runhouse can also turn
otherwise redundant AI activities into common reusable components across your team or company, which improves
cost, velocity, and reproducibility.

Highlights:
* 👩‍🔬 Dispatch Python functions, classes, and data to remote infra (clusters, cloud VMs, etc.) instantly. No need to
reach for a workflow orchestrator to run different chunks of code on various beefy boxes.
* 👷‍♀️ Deploy Python functions or classes as production-quality services instantly, including HTTPS, auth, observability,
scaling, custom domains, secrets, versioning, and more. No research-to-production gap.
* 🐍 No DSL, decorators, yaml, CLI incantations, or boilerplate. Just your own Python.
* 👩‍🎓 Extensive support for Ray, Kubernetes, AWS, GCP, Azure, local, on-prem, and more. When you want to shift or scale,
just send your app to more powerful infra.
* 👩‍🚀 Extreme reusability and portability. A single succinct script can stand up your app, dependencies, and infra.
* 👩‍🍳 Arbitrarily nest applications to create complex workflows and services. Apps are decoupled so you can change,
move, or scale any component without affecting the rest of your system.

The Runhouse API is dead simple. Send your **apps** (functions and classes) into **environments** on compute
**infra**, like this:

```python
import runhouse as rh
from diffusers import StableDiffusionPipeline

def sd_generate(prompt, **inference_kwargs):
    model = StableDiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-2-base").to("cuda")
    return model(prompt, **inference_kwargs).images

if __name__ == "__main__":
    gpu = rh.cluster(name="rh-a10x", instance_type="A10G:1", provider="aws")
    sd_env = rh.env(reqs=["torch", "transformers", "diffusers"], name="sd_generate", working_dir="./")

    # Deploy the function and environment (syncing over local code changes and installing dependencies)
    remote_sd_generate = rh.function(sd_generate).to(gpu, env=sd_env)

    # This call is actually an HTTP request to the app running on the remote server
    imgs = remote_sd_generate("A hot dog made out of matcha.")
    imgs[0].show()

    # You can also call it over HTTP directly, e.g. from other machines or languages
    print(remote_sd_generate.endpoint())
```

With the above simple structure you can run, deploy, and share:
* 🛠️ **AI primitives**: Preprocessing, training, fine-tuning, evaluation, inference
* 🚀 **Higher-order services**: Multi-stage inference (e.g. RAG), e2e workflows
* 🦺 **Controls and safety**: PII obfuscation, content moderation, drift detection
* 📊 **Data services**: ETL, caching, data augmentation, data validation


## 🛋️ Share Apps and Resources with Runhouse Den

You can unlock unique portability and sharing features by creating a
[Runhouse Den account](https://www.run.house/dashboard).
Log in from anywhere to save, share, and load resources:
```shell
runhouse login
```
or from Python:
```python
import runhouse as rh
rh.login()
```

Extending the example above to share and load our app via Den:

```python
remote_sd_generate.share(["my_pal@email.com"])

# The service stub can now be reloaded from anywhere, always at yours and your collaborators' fingertips
# Notice this code doesn't need to change if you update, move, or scale the service
remote_sd_generate = rh.function("/your_username/sd_generate")
imgs = remote_sd_generate("More matcha hotdogs.")
imgs[0].show()
```

## <h2 id="supported-infra"> 🏗️ Supported Compute Infra </h2>

Please reach out (first name at run.house) if you don't see your favorite compute here.
  - Local - **Supported**
  - Single box - **Supported**
  - Ray cluster - **Supported**
  - Kubernetes (K8S) - **Supported**
  - Amazon Web Services (AWS)
    - EC2 - **Supported**
    - EKS - **Supported**
    - SageMaker - **Supported**
    - Lambda - **Alpha**
  - Google Cloud Platform (GCP)
    - GCE - **Supported**
    - GKE - **Supported**
  - Microsoft Azure
    - VMs - **Supported**
    - AKS - **Supported**
  - Lambda Labs - **Supported**
  - Modal Labs - Planned
  - Slurm - Exploratory

## 👨‍🏫 Learn More

[**🐣 Getting Started**](https://www.run.house/docs/tutorials/cloud_quick_start): Installation, setup, and a quick walkthrough.

[**📖 Docs**](https://www.run.house/docs):
Detailed API references, basic API examples and walkthroughs, end-to-end tutorials, and high-level architecture overview.

[**🎪 Funhouse**](https://github.com/run-house/funhouse): Standalone ML apps and examples to try with Runhouse, like image generation models, LLMs,
launching Gradio spaces, and more!

[**👩‍💻 Blog**](https://www.run.house/blog): Deep dives into Runhouse features, use cases, and the future of AI
infra.

[**👾 Discord**](https://discord.gg/RnhB6589Hs): Join our community to ask questions, share ideas, and get help.

[**𝑋 Twitter**](https://twitter.com/runhouse_): Follow us for updates and announcements.

## 🙋‍♂️ Getting Help

Message us on [Discord](https://discord.gg/RnhB6589Hs), email us (first name at run.house), or create an issue.

## 👷‍♀️ Contributing

We welcome contributions! Please check out [contributing](CONTRIBUTING.md) if you're interested.
