-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(.changeset): Add system message and LLM parameters support in te…
…mplate, update run command to use the parameters
- Loading branch information
1 parent
6611cb9
commit 8d00e39
Showing
8 changed files
with
130 additions
and
110 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |