Skip to content
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.3",
"version": "0.2.0",
"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.3';
export const VERSION = '0.2.0';
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.3',
VERSION: '0.2.0',
SDK: 'TS',
}));

Expand Down