@rupayan-das/request-guard 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ npm install @rupayan-das/request-guard redis
|
|
|
21
21
|
|
|
22
22
|
Make sure Redis is running and accessible from your application.
|
|
23
23
|
|
|
24
|
-
Semantic caching requires Redis with vector search support.
|
|
24
|
+
Semantic caching requires Redis with vector search support, such as Redis Stack.
|
|
25
25
|
|
|
26
26
|
## Rate Limiting
|
|
27
27
|
|
|
@@ -136,6 +136,8 @@ interface EmbeddingProvider {
|
|
|
136
136
|
}
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
+
> **Note:** The embedding provider must return vectors with the same dimensionality configured in the Redis vector index.
|
|
140
|
+
|
|
139
141
|
### LLM Provider
|
|
140
142
|
|
|
141
143
|
```ts
|
|
@@ -229,4 +231,10 @@ Make sure your Redis instance is accessible from your Node.js application.
|
|
|
229
231
|
|
|
230
232
|
## License
|
|
231
233
|
|
|
232
|
-
|
|
234
|
+
MIT
|
|
235
|
+
|
|
236
|
+
## Repository
|
|
237
|
+
|
|
238
|
+
Source code and issue tracking:
|
|
239
|
+
|
|
240
|
+
https://github.com/Rupayan-san/request-guard
|