@runtypelabs/sdk 6.6.3 → 7.0.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 +8 -3
- package/dist/index.d.cts +350 -33
- package/dist/index.d.ts +350 -33
- package/dist/index.mjs +8 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6261,7 +6261,7 @@ var Runtype = class {
|
|
|
6261
6261
|
|
|
6262
6262
|
// src/version.ts
|
|
6263
6263
|
var FALLBACK_VERSION = "0.0.0";
|
|
6264
|
-
var SDK_VERSION = "
|
|
6264
|
+
var SDK_VERSION = "7.0.0".length > 0 ? "7.0.0" : FALLBACK_VERSION;
|
|
6265
6265
|
var RUNTYPE_CLIENT_KIND = "sdk";
|
|
6266
6266
|
var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
|
|
6267
6267
|
|
|
@@ -9273,8 +9273,13 @@ var EvalEndpoint = class {
|
|
|
9273
9273
|
*
|
|
9274
9274
|
* Targets are mutually exclusive — provide exactly one of `flowId`,
|
|
9275
9275
|
* `flowDefinition`, or `agentId`. The `agentId` form targets a
|
|
9276
|
-
* `claude_managed` agent; combine with per-config
|
|
9277
|
-
* to vary model / system prompt / tool
|
|
9276
|
+
* `claude_managed` agent; combine with per-config
|
|
9277
|
+
* `overrides.claudeManaged` to vary model / system prompt / tool
|
|
9278
|
+
* permissions across configs.
|
|
9279
|
+
*
|
|
9280
|
+
* Override intent goes in `overrides`. Set one channel per config: pairing
|
|
9281
|
+
* `overrides` with a legacy field it replaces is a 400, because the losing
|
|
9282
|
+
* one would still be recorded and compared.
|
|
9278
9283
|
*/
|
|
9279
9284
|
async runVirtualEval(data) {
|
|
9280
9285
|
return this.client.requestStream("/eval/stream", {
|
package/package.json
CHANGED