Skip to content

Commit

Permalink
Fix installation instructions for case sensitive file systems (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt authored May 21, 2024
1 parent 120b50d commit 29d7175
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ LitServe is a high-throughput serving engine for deploying AI models at scale. L
Why we wrote LitServe:

1. Work with any model: LLMs, vision, time-series, etc...
3. We wanted a zero abstraction, minimal, hackable code-base without bloat.
5. Built for enterprise scale (not demos, etc...).
6. Easy enough for researchers, scalable and hackable for engineers.
2. Work on any hardware (GPU/TPU) automatically.
5. Let you focus on model performance, not the serving boilerplate.
2. We wanted a zero abstraction, minimal, hackable code-base without bloat.
3. Built for enterprise scale (not demos, etc...).
4. Easy enough for researchers, scalable and hackable for engineers.
5. Work on any hardware (GPU/TPU) automatically.
6. Let you focus on model performance, not the serving boilerplate.

Think of LitServe as PyTorch Lightning for model serving (if you're familiar with Lightning) but supports every framework like PyTorch, JAX, Tensorflow and more.

Expand Down Expand Up @@ -98,8 +98,8 @@ pip install git+https://github.com/Lightning-AI/litserve.git@main
Install from source:

```bash
git clone https://github.com/Lightning-AI/litserve
cd litserve
git clone https://github.com/Lightning-AI/LitServe
cd LitServe
pip install -e '.[all]'
```

Expand Down

0 comments on commit 29d7175

Please sign in to comment.