tuningengines-cli 0.3.2 → 0.3.4
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 +1 -1
- package/dist/cli.js +1 -1
- package/dist/client.js +2 -2
- package/dist/mcp.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -243,7 +243,7 @@ Works for both new sign-ups and existing accounts. Token saved to `~/.tuningengi
|
|
|
243
243
|
|
|
244
244
|
- [Website](https://tuningengines.com)
|
|
245
245
|
- [npm](https://www.npmjs.com/package/tuningengines-cli)
|
|
246
|
-
- [GitHub](https://github.com/
|
|
246
|
+
- [GitHub](https://github.com/cerebrixos-org/tuning-engines-cli)
|
|
247
247
|
|
|
248
248
|
## License
|
|
249
249
|
|
package/dist/cli.js
CHANGED
|
@@ -47,7 +47,7 @@ const program = new commander_1.Command();
|
|
|
47
47
|
program
|
|
48
48
|
.name("te")
|
|
49
49
|
.description("Tuning Engines CLI — fine-tune LLMs from your terminal")
|
|
50
|
-
.version("0.3.
|
|
50
|
+
.version("0.3.4");
|
|
51
51
|
// Lazy client initialization (only when a command actually needs it)
|
|
52
52
|
const getClient = () => {
|
|
53
53
|
return new client_1.TuningEnginesClient({
|
package/dist/client.js
CHANGED
|
@@ -133,7 +133,7 @@ class TuningEnginesClient {
|
|
|
133
133
|
headers: {
|
|
134
134
|
"Content-Type": "application/json",
|
|
135
135
|
Accept: "application/json",
|
|
136
|
-
"User-Agent": "tuning-engines-cli/0.3.
|
|
136
|
+
"User-Agent": "tuning-engines-cli/0.3.4",
|
|
137
137
|
},
|
|
138
138
|
};
|
|
139
139
|
const req = transport.request(options, (res) => {
|
|
@@ -184,7 +184,7 @@ class TuningEnginesClient {
|
|
|
184
184
|
Authorization: `Bearer ${this.apiKey}`,
|
|
185
185
|
"Content-Type": "application/json",
|
|
186
186
|
Accept: "application/json",
|
|
187
|
-
"User-Agent": "tuning-engines-cli/0.3.
|
|
187
|
+
"User-Agent": "tuning-engines-cli/0.3.4",
|
|
188
188
|
},
|
|
189
189
|
};
|
|
190
190
|
const req = transport.request(options, (res) => {
|
package/dist/mcp.js
CHANGED
|
@@ -11,7 +11,7 @@ async function startMcpServer() {
|
|
|
11
11
|
apiKey: (0, config_1.getApiKey)(),
|
|
12
12
|
apiUrl: (0, config_1.getApiUrl)(),
|
|
13
13
|
});
|
|
14
|
-
const server = new index_js_1.Server({ name: "tuning-engines", version: "0.3.
|
|
14
|
+
const server = new index_js_1.Server({ name: "tuning-engines", version: "0.3.4" }, {
|
|
15
15
|
capabilities: { tools: {} },
|
|
16
16
|
instructions: "Tuning Engines — Fine-tune LLMs on code repositories.\n\n" +
|
|
17
17
|
"USE THIS SERVER WHEN the user wants to:\n" +
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tuningengines-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "CLI and MCP server for Tuning Engines — fine-tune LLMs from your terminal or AI assistant. Train custom models on code repos with browser-based auth, cost estimation, model management, and 18 MCP tools for Claude, ChatGPT, Cursor, and more.",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"mcpName": "io.github.cerebrixos/tuning-engines",
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "https://github.com/
|
|
33
|
+
"url": "https://github.com/cerebrixos-org/tuning-engines-cli.git"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"mcp",
|