Skip to content

Commit

Permalink
feat(.changeset): Add system message and LLM parameters support in te…
Browse files Browse the repository at this point in the history
…mplate, update run command to use the parameters
  • Loading branch information
raphaelmansuy committed Sep 2, 2024
1 parent 6611cb9 commit 8d00e39
Show file tree
Hide file tree
Showing 8 changed files with 130 additions and 110 deletions.
7 changes: 0 additions & 7 deletions .changeset/fair-pumpkins-relax.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/popular-suits-punch.md

This file was deleted.

14 changes: 14 additions & 0 deletions packages/qllm-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# qllm

## 2.5.0

### Minor Changes

- 4e20449: fix regex issues

### Patch Changes

- 6611cb9: - Add system message and LLM parameters support in template
- Update run command to use the parameters in the template
- Updated dependencies [6611cb9]
- Updated dependencies [4e20449]
- qllm-lib@3.4.0

## 2.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/qllm-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qllm",
"version": "2.4.0",
"version": "2.5.0",
"description": "QLLM CLI: A versatile CLI tool for interacting with multiple AI/LLM providers. Features include chat sessions, one-time queries, image handling, and conversation management. Streamlines AI development with easy provider/model switching and configuration.",
"keywords": [
"ai",
Expand Down
11 changes: 11 additions & 0 deletions packages/qllm-lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# qllm-lib

## 3.4.0

### Minor Changes

- 4e20449: fix regex issues

### Patch Changes

- 6611cb9: - Add system message and LLM parameters support in template
- Update run command to use the parameters in the template

## 3.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/qllm-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qllm-lib",
"version": "3.3.0",
"version": "3.4.0",
"description": "Core library providing robust AI engineering functionalities tailored for Large Language Model (LLM) applications, enabling developers to build, deploy, and optimize AI solutions with ease.",
"keywords": [
"ai",
Expand Down
9 changes: 9 additions & 0 deletions packages/qllm-samples/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# qllm-samples

## 1.0.1

### Patch Changes

- Updated dependencies [6611cb9]
- Updated dependencies [4e20449]
- qllm-lib@3.4.0
189 changes: 94 additions & 95 deletions packages/qllm-samples/package.json
Original file line number Diff line number Diff line change
@@ -1,97 +1,96 @@
{
"name": "qllm-samples",
"version": "1.0.0",
"description": "QLLM Samples",
"keywords": [
"ai",
"llm",
"qllm",
"library",
"typescript",
"aws-sdk"
],
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"bin": {
"qllm": "./dist/index.js"
},
"scripts": {
"build:ts": "tsc",
"build": "pnpm run build:ts",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "jest",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantalogic/qllm.git"
},
"bugs": {
"url": "https://github.com/quantalogic/qllm/issues"
},
"homepage": "https://github.com/quantalogic/qllm#readme",
"author": {
"name": "QuantaLogic",
"url": "https://quantalogic.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/copy-paste": "^1.1.33",
"@types/jest": "^29.5.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.5.1",
"@types/prompts": "^2.4.9",
"@types/screenshot-desktop": "^1.12.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@npmcli/fs": "^3.1.1",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"console-table-printer": "^2.12.1",
"copy-paste": "^1.5.3",
"gradient-string": "^2.0.2",
"jimp": "^0.22.12",
"kleur": "^4.1.5",
"lru-cache": "^11.0.0",
"mime-types": "^2.1.35",
"nanospinner": "^1.1.0",
"prompts": "^2.4.2",
"qllm-lib": "workspace:*",
"readline": "^1.3.0",
"screenshot-desktop": "^1.15.0",
"table": "^6.8.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"overrides": {
"glob": "^9.0.0",
"rimraf": "^5.0.0",
"@npmcli/move-file": "npm:@npmcli/fs@latest",
"are-we-there-yet": "latest",
"gauge": "latest"
},
"publishConfig": {
"access": "public"
}
"name": "qllm-samples",
"version": "1.0.1",
"description": "QLLM Samples",
"keywords": [
"ai",
"llm",
"qllm",
"library",
"typescript",
"aws-sdk"
],
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"bin": {
"qllm": "./dist/index.js"
},
"scripts": {
"build:ts": "tsc",
"build": "pnpm run build:ts",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "jest",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantalogic/qllm.git"
},
"bugs": {
"url": "https://github.com/quantalogic/qllm/issues"
},
"homepage": "https://github.com/quantalogic/qllm#readme",
"author": {
"name": "QuantaLogic",
"url": "https://quantalogic.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/copy-paste": "^1.1.33",
"@types/jest": "^29.5.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.5.1",
"@types/prompts": "^2.4.9",
"@types/screenshot-desktop": "^1.12.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@npmcli/fs": "^3.1.1",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"console-table-printer": "^2.12.1",
"copy-paste": "^1.5.3",
"gradient-string": "^2.0.2",
"jimp": "^0.22.12",
"kleur": "^4.1.5",
"lru-cache": "^11.0.0",
"mime-types": "^2.1.35",
"nanospinner": "^1.1.0",
"prompts": "^2.4.2",
"qllm-lib": "workspace:*",
"readline": "^1.3.0",
"screenshot-desktop": "^1.15.0",
"table": "^6.8.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"overrides": {
"glob": "^9.0.0",
"rimraf": "^5.0.0",
"@npmcli/move-file": "npm:@npmcli/fs@latest",
"are-we-there-yet": "latest",
"gauge": "latest"
},
"publishConfig": {
"access": "public"
}
}

0 comments on commit 8d00e39

Please sign in to comment.