@mate-academy/llm-gateway 8.8.3 → 8.9.0
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 +5 -4
- package/dist/LLMService.constants.d.ts +11722 -3998
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +20039 -8453
- package/dist/providers/LLMAPI/LLMAPI.constants.js +2634 -542
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +163 -19
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js +179 -18
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/dist/services/LLMBaseService.abstract.js +41 -21
- package/dist/services/LLMBaseService.abstract.js.map +1 -1
- package/dist/utilities/llmTracing/llmTracing.typedefs.d.ts +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2118,10 +2118,11 @@ rules:
|
|
|
2118
2118
|
|
|
2119
2119
|
- Unscoped aliases are always present; scoped aliases (`openai/…`, `azure/…`,
|
|
2120
2120
|
`nebius/…`) only when LLMAPI advertises 2+ providers for that model.
|
|
2121
|
-
- Existing
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2121
|
+
- Existing hand-tuned limits, capabilities, regular pricing, and configuration
|
|
2122
|
+
are preserved. Cached input prices are refreshed from LLMAPI for every
|
|
2123
|
+
existing and new route, including provider-specific overrides.
|
|
2124
|
+
- `maxOutputTokens` and any missing `maxInputTokens` are researched from
|
|
2125
|
+
provider docs via web-search sub-agents.
|
|
2125
2126
|
|
|
2126
2127
|
See the linked README for the full classify → research → apply workflow.
|
|
2127
2128
|
|