Skip to content

Commit 8426f82

Browse files
Update README.md
1 parent cb41fc0 commit 8426f82

1 file changed

Lines changed: 15 additions & 35 deletions

File tree

README.md

Lines changed: 15 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Using multiple AI models is painful - different APIs, multiple subscriptions, do
1919
<div align='center'>
2020
<pre>
2121
✅ Use any AI model ✅ Unified usage dashboard ✅ No subscription
22-
✅ Bring your own model ✅ Easily switch models ✅ 20+ public models
22+
✅ Bring your own model ✅ Smart model fallback ✅ 20+ public models
2323
✅ Deploy dedicated models ✅ Start instantly ✅ No MLOps glue code
2424
</pre>
2525
</div>
@@ -50,9 +50,8 @@ Install LitAI via pip ([more options](https://lightning.ai/docs/litai/home/insta
5050
pip install litai
5151
```
5252

53-
## Run on a Studio
54-
55-
When running inside Lightning Studio, you can use any available LLM out of the box — no extra setup required.
53+
## Run
54+
Add AI to any Python program in 3 lines:
5655

5756
```python
5857
from litai import LLM
@@ -62,37 +61,18 @@ print(llm.chat("who are you?"))
6261
# I'm an AI by OpenAI
6362
```
6463

65-
## Run locally (outside Studio)
66-
67-
To use LitAI outside of Lightning Studio, you'll need to explicitly provide your teamspace name.
68-
69-
The teamspace input format is: `"owner-name/teamspace-name"` (e.g. `"username/my-team"` or `"org-name/team-name"`)
70-
71-
```python
72-
from litai import LLM
73-
74-
llm = LLM(model="openai/gpt-4", teamspace="owner-name/teamspace-name")
75-
print(llm.chat("who are you?"))
76-
# I'm an AI by OpenAI
77-
```
78-
79-
# Key benefits
80-
81-
A few key benefits:
82-
83-
- Supports 20+ public models
84-
- Bring your own model
85-
- Keeps chat logs
86-
- Optional guardrails
87-
- Usage dashboard
88-
89-
# Features
90-
91-
[Concurrency with async](https://lightning.ai/docs/litai/features/async-litai/)\
92-
[Fallback and retry](https://lightning.ai/docs/litai/features/fallback-retry/)\
93-
[Switch models](https://lightning.ai/docs/litai/features/models/)\
94-
[Multi-turn conversation logs](https://lightning.ai/docs/litai/features/multi-turn-conversation/)\
95-
[Streaming](https://lightning.ai/docs/litai/features/streaming/)
64+
# Key features
65+
66+
[Use over 20+ models (ChatGPT, Claude, etc...)](https://lightning.ai/)
67+
[Monitor all usage in one place](https://lightning.ai/model-apis)
68+
[Async support](https://lightning.ai/docs/litai/features/async-litai/)
69+
[Auto retries on failure](https://lightning.ai/docs/litai/features/fallback-retry/)
70+
[Auto model switch on failure](https://lightning.ai/docs/litai/features/fallback-retry/)
71+
[Switch models](https://lightning.ai/docs/litai/features/models/)
72+
[Multi-turn conversation logs](https://lightning.ai/docs/litai/features/multi-turn-conversation/)
73+
[Streaming](https://lightning.ai/docs/litai/features/streaming/)
74+
✅ Bring your own model (connect your API keys, coming soon...)
75+
✅ Chat logs (coming soon...)
9676

9777
# Advanced features
9878

0 commit comments

Comments
 (0)