vern-llm 1.7.0 → 1.7.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 +1 -1
- package/package.json +2 -13
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ const result = await llm.call({
|
|
|
60
60
|
- **Caching**: wrap any call with `cachedCall`/`cachedLLMCall`, bring your own cache adapter
|
|
61
61
|
- **Circuit breaker**: trips after repeated failures, recovers automatically once the provider's back
|
|
62
62
|
- **One interface, every provider**: OpenAI, Groq, Mistral, DeepSeek, Cerebras, Together, Fireworks, Ollama, Anthropic, Gemini, Bedrock, or raw HTTP via `fromFetch`
|
|
63
|
-
- **Zero
|
|
63
|
+
- **Zero runtime dependencies**: `zod` and provider SDKs are not required dependencies; VernLLM relies on compatible interfaces rather than specific implementations.
|
|
64
64
|
|
|
65
65
|
See the [docs](https://vernllm.vercel.app) for adapter setup, caching, the circuit breaker, and structured output in depth.
|
|
66
66
|
|
package/package.json
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vern-llm",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "Production-ready resilience for LLM calls: retries, timeouts, caching, and circuit breaking behind one typed interface, with adapters for OpenAI-compatible APIs (OpenAI, Groq, and more), Anthropic, Gemini, and Bedrock.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"llm",
|
|
7
7
|
"ai",
|
|
8
8
|
"openai",
|
|
9
|
-
"openai-compatible",
|
|
10
9
|
"anthropic",
|
|
11
10
|
"gemini",
|
|
12
|
-
"groq",
|
|
13
11
|
"bedrock",
|
|
14
|
-
"language-model",
|
|
15
12
|
"ai-sdk",
|
|
16
13
|
"llm-client",
|
|
17
14
|
"retry",
|
|
@@ -37,19 +34,11 @@
|
|
|
37
34
|
"engines": {
|
|
38
35
|
"node": ">=20"
|
|
39
36
|
},
|
|
40
|
-
"peerDependencies": {
|
|
41
|
-
"openai": "^5.0.0"
|
|
42
|
-
},
|
|
43
|
-
"peerDependenciesMeta": {
|
|
44
|
-
"openai": {
|
|
45
|
-
"optional": true
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
37
|
"devDependencies": {
|
|
49
38
|
"@changesets/cli": "^2.31.1",
|
|
50
39
|
"@types/node": "^26.1.1",
|
|
51
40
|
"@vitest/coverage-v8": "^4.1.10",
|
|
52
|
-
"openai": "^
|
|
41
|
+
"openai": "^7.4.0",
|
|
53
42
|
"tsdown": "^0.9.9",
|
|
54
43
|
"typescript": "^5.9.3",
|
|
55
44
|
"vitest": "^4.1.10",
|