@vellumai/plugin-api 0.10.0-dev.202606221405.2fda286 → 0.10.0-dev.202606222007.e9d01e2

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/index.d.ts +5 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1256,6 +1256,8 @@ declare type _DocumentsServerMessages = DocumentEditorShow | DocumentEditorUpdat
1256
1256
  * the resolver's `withImpliedProviderForKnownModel`).
1257
1257
  * - For a mix profile, returns `true` if any constituent arm supports vision
1258
1258
  * (the mix can route to it) and `false` only if every arm is text-only.
1259
+ * - The "auto" meta-profile returns `false` — it has no concrete model and
1260
+ * may route to a text-only profile at runtime.
1259
1261
  * - Unknown `(provider, model)` pairs default to `true` (fail-open), matching
1260
1262
  * the config GET route's `enrichProfilesWithVisionFlag`.
1261
1263
  */
@@ -1507,6 +1509,9 @@ export declare function getConfiguredProvider(callSite: LLMCallSite, opts?: {
1507
1509
  * flagged via {@link ModelProfileInfo.isMix}, since a mix is itself a valid
1508
1510
  * routing target (it resolves to one constituent per conversation).
1509
1511
  *
1512
+ * The meta-"auto" profile is excluded — it has no concrete provider/model and
1513
+ * cannot be used as a dispatch target by a plugin sending an actual LLM call.
1514
+ *
1510
1515
  * Reads the live in-memory config, so the result reflects the current profile
1511
1516
  * set each time it is called.
1512
1517
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.0-dev.202606221405.2fda286",
3
+ "version": "0.10.0-dev.202606222007.e9d01e2",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",