@t2000/sdk 5.20.1 → 5.21.0
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/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2030,7 +2030,8 @@ async function listModels(opts) {
|
|
|
2030
2030
|
contextWindow: m.context_window ?? m.context_length,
|
|
2031
2031
|
inputPer1M: m.pricing?.input_per_1m ?? m.pricing?.prompt,
|
|
2032
2032
|
outputPer1M: m.pricing?.output_per_1m ?? m.pricing?.completion,
|
|
2033
|
-
privacy: m.privacy ?? m.privacy_tier
|
|
2033
|
+
privacy: m.privacy ?? m.privacy_tier,
|
|
2034
|
+
reasoning: m.reasoning
|
|
2034
2035
|
}));
|
|
2035
2036
|
}
|
|
2036
2037
|
var RECEIPT_ANCHORED_SUFFIX = "::anchor::ReceiptAnchored";
|