@anvaka/vue-llm 0.3.2 → 0.4.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 +2 -1
- package/dist/pricing/rates.js +18 -3
- package/dist/providers/BedrockMantleProvider.js +265 -0
- package/dist/providers/BedrockProvider.js +45 -41
- package/dist/providers/factory.js +84 -50
- package/dist/providers/index.js +12 -9
- package/dist/vue/components/LLMConfigModal.vue.js +357 -297
- package/dist/vue/useLLM.js +10 -8
- package/dist/vue-llm.css +1 -1
- package/package.json +1 -1
package/dist/providers/index.js
CHANGED
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { BaseProvider as o } from "./BaseProvider.js";
|
|
2
2
|
import { OpenAIProvider as t } from "./OpenAIProvider.js";
|
|
3
3
|
import { AnthropicProvider as p } from "./AnthropicProvider.js";
|
|
4
|
-
import { BEDROCK_CLAUDE_MODELS as v, BedrockProvider as
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
4
|
+
import { BEDROCK_CLAUDE_MODELS as v, BedrockProvider as D } from "./BedrockProvider.js";
|
|
5
|
+
import { BEDROCK_MANTLE_CLAUDE_MODELS as x, BedrockMantleProvider as f } from "./BedrockMantleProvider.js";
|
|
6
|
+
import { DeepSeekProvider as O } from "./DeepSeekProvider.js";
|
|
7
|
+
import { DEFAULT_CONFIGS as L, PROVIDERS as _, createProvider as c, createProviderFlexible as B, registerProvider as C } from "./factory.js";
|
|
7
8
|
export {
|
|
8
9
|
p as AnthropicProvider,
|
|
9
10
|
v as BEDROCK_CLAUDE_MODELS,
|
|
11
|
+
x as BEDROCK_MANTLE_CLAUDE_MODELS,
|
|
10
12
|
o as BaseProvider,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
f as BedrockMantleProvider,
|
|
14
|
+
D as BedrockProvider,
|
|
15
|
+
L as DEFAULT_CONFIGS,
|
|
16
|
+
O as DeepSeekProvider,
|
|
14
17
|
t as OpenAIProvider,
|
|
15
|
-
|
|
18
|
+
_ as PROVIDERS,
|
|
16
19
|
c as createProvider,
|
|
17
|
-
|
|
18
|
-
|
|
20
|
+
B as createProviderFlexible,
|
|
21
|
+
C as registerProvider
|
|
19
22
|
};
|