@friendliai/ai-provider 0.1.22 → 0.1.24

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @friendliai/ai-provider
2
2
 
3
+ ## 0.1.24
4
+
5
+ ### Patch Changes
6
+
7
+ - 6b241b6: add exaone
8
+
9
+ ## 0.1.23
10
+
11
+ ### Patch Changes
12
+
13
+ - d51f04e: update dependencies, @ai-sdk/provider-utils@2.0.3
14
+
3
15
  ## 0.1.22
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -2,7 +2,7 @@ import { ProviderV1, LanguageModelV1 } from '@ai-sdk/provider';
2
2
  import { FetchFunction } from '@ai-sdk/provider-utils';
3
3
 
4
4
  type FriendliAIChatModelId = "meta-llama-3.1-8b-instruct" | "meta-llama-3.1-70b-instruct" | "mixtral-8x7b-instruct-v0-1" | (string & {});
5
- type FriendliAIBetaChatModelId = "llama-3.2-11b-vision-instruct";
5
+ type FriendliAIBetaChatModelId = "llama-3.2-11b-vision-instruct" | "exaone-3.5-7.8b-instruct" | "exaone-3.5-32b-instruct" | (string & {});
6
6
  interface FriendliAIChatSettings {
7
7
  /**
8
8
  Modify the likelihood of specified tokens appearing in the completion.
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import { ProviderV1, LanguageModelV1 } from '@ai-sdk/provider';
2
2
  import { FetchFunction } from '@ai-sdk/provider-utils';
3
3
 
4
4
  type FriendliAIChatModelId = "meta-llama-3.1-8b-instruct" | "meta-llama-3.1-70b-instruct" | "mixtral-8x7b-instruct-v0-1" | (string & {});
5
- type FriendliAIBetaChatModelId = "llama-3.2-11b-vision-instruct";
5
+ type FriendliAIBetaChatModelId = "llama-3.2-11b-vision-instruct" | "exaone-3.5-7.8b-instruct" | "exaone-3.5-32b-instruct" | (string & {});
6
6
  interface FriendliAIChatSettings {
7
7
  /**
8
8
  Modify the likelihood of specified tokens appearing in the completion.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@friendliai/ai-provider",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@ai-sdk/provider": "1.0.1",
29
- "@ai-sdk/provider-utils": "2.0.2"
29
+ "@ai-sdk/provider-utils": "2.0.3"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@edge-runtime/vm": "^5.0.0",