Skip to content

Commit 6dcb587

Browse files
xavidoprednikisfun
andauthored
feat: update plugins (#290)
* feat: update plugins * Add support for GPT-4.1 models including mini and nano variants (#287) * feat: openai * feat: anthropic * feat: anthropic * feat: azure open ai --------- Co-authored-by: Isfun <53967674+rednikisfun@users.noreply.github.com>
1 parent 6232ef6 commit 6dcb587

File tree

25 files changed

+905
-266
lines changed

25 files changed

+905
-266
lines changed

examples/anthropic/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build": "tsc",
1010
"build:watch": "tsc --watch",
1111
"genkit:dev": "cross-env GENKIT_ENV=dev npm run dev",
12+
"genkit:start": "cross-env GENKIT_ENV=dev genkit start -- tsx --watch src/index.ts",
1213
"dev": "export GENKIT_RUNTIME_ID=$(openssl rand -hex 8) && node lib/index.js 2>&1"
1314
},
1415
"keywords": [],

examples/azure-openai/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build": "tsc",
1010
"build:watch": "tsc --watch",
1111
"genkit:dev": "cross-env GENKIT_ENV=dev npm run dev",
12+
"genkit:start": "cross-env GENKIT_ENV=dev genkit start -- tsx --watch src/index.ts",
1213
"dev": "export GENKIT_RUNTIME_ID=$(openssl rand -hex 8) && node lib/index.js 2>&1"
1314
},
1415
"keywords": [],

examples/cohere/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build": "tsc",
1010
"build:watch": "tsc --watch",
1111
"genkit:dev": "cross-env GENKIT_ENV=dev npm run dev",
12+
"genkit:start": "cross-env GENKIT_ENV=dev genkit start -- tsx --watch src/index.ts",
1213
"dev": "export GENKIT_RUNTIME_ID=$(openssl rand -hex 8) && node lib/index.js 2>&1"
1314
},
1415
"keywords": [],

examples/groq/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build": "tsc",
1010
"build:watch": "tsc --watch",
1111
"genkit:dev": "cross-env GENKIT_ENV=dev npm run dev",
12+
"genkit:start": "cross-env GENKIT_ENV=dev genkit start -- tsx --watch src/index.ts",
1213
"dev": "export GENKIT_RUNTIME_ID=$(openssl rand -hex 8) && node lib/index.js 2>&1"
1314
},
1415
"keywords": [],

lerna.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"version": "0.20.3",
4-
"packages": [
5-
"plugins/*",
6-
"docs",
7-
"examples/*"
8-
]
9-
}
4+
"packages": ["plugins/*", "docs", "examples/*"]
5+
}

0 commit comments

Comments
 (0)