Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion intelligence/ts/examples/browser-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build:extension": "pnpm ibuild && cd dist && zip -r -FS ./flower-intelligence-browser-assistant.xpi * && cd .."
},
"dependencies": {
"@flwr/flwr": "^0.1.2",
"@flwr/flwr": "^0.1.3",
"@mozilla/readability": "^0.5.0",
"webextension-polyfill": "^0.12.0"
},
Expand Down
2 changes: 1 addition & 1 deletion intelligence/ts/examples/encrypted/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"keywords": [],
"author": "",
"dependencies": {
"@flwr/flwr": "^0.1.2",
"@flwr/flwr": "^0.1.3",
"cross-spawn": "^7.0.5"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion intelligence/ts/examples/simple-js-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"keywords": [],
"author": "",
"dependencies": {
"@flwr/flwr": "^0.1.2",
"@flwr/flwr": "^0.1.3",
"cross-spawn": "^7.0.5"
}
}
2 changes: 1 addition & 1 deletion intelligence/ts/examples/simple-ts-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"keywords": [],
"author": "",
"dependencies": {
"@flwr/flwr": "^0.1.2",
"@flwr/flwr": "^0.1.3",
"cross-spawn": "^7.0.5"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion intelligence/ts/examples/streaming-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"keywords": [],
"author": "",
"dependencies": {
"@flwr/flwr": "^0.1.2",
"@flwr/flwr": "^0.1.3",
"cross-spawn": "^7.0.5"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion intelligence/ts/examples/web-chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"keywords": [],
"author": "",
"dependencies": {
"@flwr/flwr": "^0.1.2",
"@flwr/flwr": "^0.1.3",
"cross-spawn": "^7.0.5"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion intelligence/ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"url": "git+https://github.com/adap/flower.git"
},
"author": "The Flower Authors <hello@flower.ai>",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"main": "./dist/flowerintelligence.cjs.js",
"module": "./dist/flowerintelligence.es.js",
Expand Down
2 changes: 1 addition & 1 deletion intelligence/ts/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@

export const DEFAULT_MODEL = 'meta/llama3.2-1b/instruct-fp16';
export const REMOTE_URL = 'https://api.flower.ai';
export const VERSION = '0.1.2';
export const VERSION = '0.1.3';
export const SDK = 'TS';
2 changes: 1 addition & 1 deletion intelligence/ts/src/flowerintelligence.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { vi } from 'vitest';
vi.mock('./constants', () => ({
DEFAULT_MODEL: 'meta/llama3.2-1b/instruct-fp16',
REMOTE_URL: process.env.FI_DEV_REMOTE_URL,
VERSION: '0.1.2',
VERSION: '0.1.3',
SDK: 'TS',
}));

Expand Down