myte 0.0.16 → 0.0.17

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -88,6 +88,8 @@ Run this first when onboarding on a new machine:
88
88
 
89
89
  Use `myte ai` as the thin inference gateway client. The npm package does not ship models or backend internals; it sends your request to `api.myte.ai` with `MYTEAI_API_KEY`.
90
90
 
91
+ `--json-response` asks for strict JSON and now sends both `myte_json_response: true` and the OpenAI-compatible `response_format: { type: "json_object" }` shape. On the public developer API, that strict-JSON path also defaults to `medium` reasoning unless the caller explicitly overrides reasoning.
92
+
91
93
  Examples:
92
94
 
93
95
  - `npx myte ai "Explain what this repository does"`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myte",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "Myte developer CLI (Project Assistant + Myte AI gateway).",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
@@ -16,6 +16,6 @@
16
16
  "node": ">=18"
17
17
  },
18
18
  "dependencies": {
19
- "@mytegroupinc/myte-core": "0.0.16"
19
+ "@mytegroupinc/myte-core": "0.0.17"
20
20
  }
21
21
  }