@fencyai/js 0.1.116 → 0.1.117

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.
@@ -1,3 +1,3 @@
1
- export type AgentTaskModel = 'anthropic/claude-opus-4.6' | 'anthropic/claude-opus-4.5' | 'anthropic/claude-sonnet-4.5' | 'google/gemini-2.5-flash' | 'google/gemini-2.5-flash-lite' | 'google/gemini-2.5-pro' | 'openai/gpt-4.1-nano';
1
+ export type AgentTaskModel = 'anthropic/claude-haiku-4.5' | 'anthropic/claude-opus-4.5' | 'anthropic/claude-sonnet-4.5' | 'anthropic/claude-opus-4.6' | 'anthropic/claude-sonnet-4.6' | 'google/gemini-2.5-flash' | 'google/gemini-2.5-flash-lite' | 'google/gemini-2.5-pro' | 'openai/gpt-4.1-nano';
2
2
  export declare const agentTaskModels: AgentTaskModel[];
3
3
  export declare const isValidAgentTaskModel: (model: string) => model is AgentTaskModel;
@@ -1,7 +1,9 @@
1
1
  export const agentTaskModels = [
2
- 'anthropic/claude-opus-4.6',
2
+ 'anthropic/claude-haiku-4.5',
3
3
  'anthropic/claude-opus-4.5',
4
4
  'anthropic/claude-sonnet-4.5',
5
+ 'anthropic/claude-opus-4.6',
6
+ 'anthropic/claude-sonnet-4.6',
5
7
  'google/gemini-2.5-flash',
6
8
  'google/gemini-2.5-flash-lite',
7
9
  'google/gemini-2.5-pro',
@@ -9,9 +11,11 @@ export const agentTaskModels = [
9
11
  ];
10
12
  export const isValidAgentTaskModel = (model) => {
11
13
  return [
12
- 'anthropic/claude-opus-4.6',
14
+ 'anthropic/claude-haiku-4.5',
13
15
  'anthropic/claude-opus-4.5',
14
16
  'anthropic/claude-sonnet-4.5',
17
+ 'anthropic/claude-opus-4.6',
18
+ 'anthropic/claude-sonnet-4.6',
15
19
  'google/gemini-2.5-flash',
16
20
  'google/gemini-2.5-flash-lite',
17
21
  'google/gemini-2.5-pro',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fencyai/js",
3
- "version": "0.1.116",
3
+ "version": "0.1.117",
4
4
  "description": "> TODO: description",
5
5
  "author": "staklau <steinaageklaussen@gmail.com>",
6
6
  "homepage": "",
@@ -42,5 +42,5 @@
42
42
  "ts-jest": "^29.1.1",
43
43
  "typescript": "^5.3.3"
44
44
  },
45
- "gitHead": "721924378799879a147e87ccf2a20924339bdde5"
45
+ "gitHead": "6b6ec05fe3ddfa2f061fce3be90721a32fdb0a7a"
46
46
  }