Skip to content

Commit 615bea6

Browse files
docs: add banner in readme (#17)
1 parent 9a5b23a commit 615bea6

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# ResilientLLM
2+
[![npm version](https://img.shields.io/npm/v/resilient-llm.svg)](https://www.npmjs.com/package/resilient-llm) [![license](https://img.shields.io/npm/l/resilient-llm.svg)](LICENSE)
23

34
A minimalist but robust LLM integration layer designed to ensure reliable, seamless interactions across multiple LLM providers by intelligently handling failures and rate limits.
45

5-
---
6+
![banner](./banner.png)
67

7-
This library solves challenges in building production-ready AI Agents due to:
8+
ResilientLLM makes your AI Agents or LLM apps production-ready by dealing with challenges such as:
89

910
- ❌ Unstable network conditions
1011
- ⚠️ Inconsistent error handling
1112
- ⏳ Unpredictable LLM API rate limit errors
1213

1314
### Key Features
1415

15-
- **Token estimation**: You don’t need to calculate LLM tokens, they are estimated for each request
16-
- **Rate limiting**: You don't need to manage the token bucket rate algorithm yourself to follow the rate limits by LLM service providers, it is done for you automatically
17-
- **Retries, backoff, and circuit breaker**: All are handled internally by the `ResilientOperation`.
16+
- **Token Estimation**: You don’t need to calculate LLM tokens, they are estimated for each request
17+
- **Rate Limiting**: You don't need to manage the token bucket rate algorithm yourself to follow the rate limits by LLM service providers, it is done for you automatically
18+
- **Retries, Backoff, and Circuit Breaker**: All are handled internally by the `ResilientOperation`
1819

1920
## Installation
2021

banner.png

865 KB
Loading

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,9 @@
3636
"mocha": "^11.7.1",
3737
"nyc": "^17.1.0",
3838
"sinon": "^21.0.0"
39+
},
40+
"repository": {
41+
"type": "git",
42+
"url": "https://github.com/gitcommitshow/resilient-llm"
3943
}
4044
}

0 commit comments

Comments
 (0)