Skip to content

Commit

Permalink
1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelmansuy committed Aug 26, 2024
1 parent e87ed7c commit d4ae72a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
23 changes: 15 additions & 8 deletions packages/qllm-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qllm",
"version": "1.8.3",
"version": "1.8.5",
"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 Expand Up @@ -47,31 +47,38 @@
"@types/node": "^22.5.0",
"@types/prompts": "^2.4.9",
"@types/screenshot-desktop": "^1.12.3",
"@types/table": "^6.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.2.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/node": "^22.5.0",
"@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",
"jimp": "^0.22.12",
"kleur": "^4.1.5",
"lru-cache": "^11.0.0",
"nanospinner": "^1.1.0",
"prompts": "^2.4.2",
"qllm-lib": "1.8.1",
"qllm-lib": "1.8.5",
"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"
}
}
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": "1.8.4",
"version": "1.8.5",
"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
2 changes: 1 addition & 1 deletion packages/qllm-lib/src/storage/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function createStorageProvider(
if (!dbPath) {
throw new Error('dbPath must be provided for SQLite storage provider');
}
return new SQLiteConversationStorageProvider(dbPath);
// return new SQLiteConversationStorageProvider(dbPath);
default:
throw new Error(`Unsupported provider: ${name}`);
}
Expand Down

0 comments on commit d4ae72a

Please sign in to comment.