tuneprompt 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/dist/cli.js +1 -1
- package/dist/commands/fix.js +1 -1
- package/dist/commands/run.js +1 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# TunePrompt
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/tuneprompt)
|
|
4
|
+
[](https://www.npmjs.com/package/tuneprompt)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
3
7
|
Industrial-grade testing framework for LLM prompts
|
|
4
8
|
|
|
5
9
|
## Overview
|
|
@@ -116,7 +120,7 @@ Tests are defined in JSON files in the `tests` directory. Each test file contain
|
|
|
116
120
|
|
|
117
121
|
TunePrompt offers cloud synchronization for storing test results and viewing them in a dashboard. To use cloud features:
|
|
118
122
|
|
|
119
|
-
1. Purchase a subscription at [https://tuneprompt.
|
|
123
|
+
1. Purchase a subscription at [https://www.tuneprompt.xyz](https://www.tuneprompt.xyz)
|
|
120
124
|
2. Activate your license:
|
|
121
125
|
```bash
|
|
122
126
|
tuneprompt activate [your-subscription-id]
|
package/dist/cli.js
CHANGED
|
@@ -108,7 +108,7 @@ program
|
|
|
108
108
|
console.log(chalk_1.default.yellow('\n⚠️ No active license found\n'));
|
|
109
109
|
console.log(chalk_1.default.gray('You are using the free tier.\n'));
|
|
110
110
|
console.log(chalk_1.default.bold('Upgrade to Premium:'));
|
|
111
|
-
console.log(chalk_1.default.gray(' ' + chalk_1.default.blue.underline('https://tuneprompt.
|
|
111
|
+
console.log(chalk_1.default.gray(' ' + chalk_1.default.blue.underline('https://www.tuneprompt.xyz/pricing') + '\n'));
|
|
112
112
|
return;
|
|
113
113
|
}
|
|
114
114
|
// If license is valid, show info
|
package/dist/commands/fix.js
CHANGED
|
@@ -152,7 +152,7 @@ function showUpgradePrompt() {
|
|
|
152
152
|
console.log(' ✅ Interactive diff viewer');
|
|
153
153
|
console.log(' ✅ Unlimited fix attempts\n');
|
|
154
154
|
console.log(chalk_1.default.bold('Get Premium:'));
|
|
155
|
-
console.log(` 1. Buy a license: ${chalk_1.default.blue.underline('https://tuneprompt.
|
|
155
|
+
console.log(` 1. Buy a license: ${chalk_1.default.blue.underline('https://www.tuneprompt.xyz/pricing')}`);
|
|
156
156
|
console.log(` 2. Activate: ${chalk_1.default.gray('tuneprompt activate <your-key>')}\n`);
|
|
157
157
|
console.log(chalk_1.default.yellow('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n'));
|
|
158
158
|
}
|
package/dist/commands/run.js
CHANGED
|
@@ -36,7 +36,7 @@ function displayRunSummary(results) {
|
|
|
36
36
|
const licenseManager = new license_1.LicenseManager();
|
|
37
37
|
licenseManager.hasFeature('fix').then((hasAccess) => {
|
|
38
38
|
if (!hasAccess) {
|
|
39
|
-
console.log(chalk_1.default.gray('Unlock fix with: ') + chalk_1.default.white('https://tuneprompt.
|
|
39
|
+
console.log(chalk_1.default.gray('Unlock fix with: ') + chalk_1.default.white('https://www.tuneprompt.xyz/pricing'));
|
|
40
40
|
console.log(chalk_1.default.gray('Already have a key? ') + chalk_1.default.white('tuneprompt activate <key>\n'));
|
|
41
41
|
}
|
|
42
42
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tuneprompt",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Industrial-grade testing framework for LLM prompts",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/CodeForgeNet/tuneprompt.git"
|
|
8
|
+
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/CodeForgeNet/tuneprompt/issues"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://www.tuneprompt.xyz",
|
|
5
13
|
"main": "dist/index.js",
|
|
6
14
|
"types": "dist/index.d.ts",
|
|
7
15
|
"bin": {
|