tuningengines-cli 0.3.3 → 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/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.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.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.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.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",
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": {
@@ -27,7 +27,7 @@
27
27
  "README.md"
28
28
  ],
29
29
  "license": "MIT",
30
- "mcpName": "io.github.cerebrixos-org/tuning-engines",
30
+ "mcpName": "io.github.cerebrixos/tuning-engines",
31
31
  "repository": {
32
32
  "type": "git",
33
33
  "url": "https://github.com/cerebrixos-org/tuning-engines-cli.git"