@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.cjs
CHANGED
|
@@ -6449,7 +6449,7 @@ var Runtype = class {
|
|
|
6449
6449
|
|
|
6450
6450
|
// src/version.ts
|
|
6451
6451
|
var FALLBACK_VERSION = "0.0.0";
|
|
6452
|
-
var SDK_VERSION = "
|
|
6452
|
+
var SDK_VERSION = "7.0.0".length > 0 ? "7.0.0" : FALLBACK_VERSION;
|
|
6453
6453
|
var RUNTYPE_CLIENT_KIND = "sdk";
|
|
6454
6454
|
var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
|
|
6455
6455
|
|
|
@@ -9461,8 +9461,13 @@ var EvalEndpoint = class {
|
|
|
9461
9461
|
*
|
|
9462
9462
|
* Targets are mutually exclusive — provide exactly one of `flowId`,
|
|
9463
9463
|
* `flowDefinition`, or `agentId`. The `agentId` form targets a
|
|
9464
|
-
* `claude_managed` agent; combine with per-config
|
|
9465
|
-
* to vary model / system prompt / tool
|
|
9464
|
+
* `claude_managed` agent; combine with per-config
|
|
9465
|
+
* `overrides.claudeManaged` to vary model / system prompt / tool
|
|
9466
|
+
* permissions across configs.
|
|
9467
|
+
*
|
|
9468
|
+
* Override intent goes in `overrides`. Set one channel per config: pairing
|
|
9469
|
+
* `overrides` with a legacy field it replaces is a 400, because the losing
|
|
9470
|
+
* one would still be recorded and compared.
|
|
9466
9471
|
*/
|
|
9467
9472
|
async runVirtualEval(data) {
|
|
9468
9473
|
return this.client.requestStream("/eval/stream", {
|