@friendliai/ai-provider 0.1.23 → 0.1.25

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.25
4
+
5
+ ### Patch Changes
6
+
7
+ - 894764d: fix model list
8
+
9
+ ## 0.1.24
10
+
11
+ ### Patch Changes
12
+
13
+ - 6b241b6: add exaone
14
+
3
15
  ## 0.1.23
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { ProviderV1, LanguageModelV1 } from '@ai-sdk/provider';
2
2
  import { FetchFunction } from '@ai-sdk/provider-utils';
3
3
 
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";
4
+ type FriendliAIChatModelId = "meta-llama-3.1-8b-instruct" | "meta-llama-3.1-70b-instruct" | "mixtral-8x7b-instruct-v0-1" | "exaone-3.5-7.8b-instruct" | "exaone-3.5-32b-instruct" | (string & {});
5
+ type FriendliAIBetaChatModelId = "llama-3.2-11b-vision-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
@@ -1,8 +1,8 @@
1
1
  import { ProviderV1, LanguageModelV1 } from '@ai-sdk/provider';
2
2
  import { FetchFunction } from '@ai-sdk/provider-utils';
3
3
 
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";
4
+ type FriendliAIChatModelId = "meta-llama-3.1-8b-instruct" | "meta-llama-3.1-70b-instruct" | "mixtral-8x7b-instruct-v0-1" | "exaone-3.5-7.8b-instruct" | "exaone-3.5-32b-instruct" | (string & {});
5
+ type FriendliAIBetaChatModelId = "llama-3.2-11b-vision-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.23",
3
+ "version": "0.1.25",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",