@vellumai/plugin-api 0.10.8-dev.202607102228.5945895 → 0.10.8-dev.202607110044.c89e85d
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/index.d.ts +10 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5055,6 +5055,16 @@ export declare interface SendMessageConfig {
|
|
|
5055
5055
|
* stripped before any provider wire request.
|
|
5056
5056
|
*/
|
|
5057
5057
|
selectionSeed?: string;
|
|
5058
|
+
/**
|
|
5059
|
+
* Per-conversation prompt-cache key for providers with explicit prompt
|
|
5060
|
+
* caching (sent as the OpenAI `prompt_cache_key` request param). Set by
|
|
5061
|
+
* `RetryProvider` from `selectionSeed` (the durable conversation id) for
|
|
5062
|
+
* the `openai` provider only — GPT-5.6+ requires the key for reliable
|
|
5063
|
+
* breakpoint matching, and OpenAI's ~15 req/min-per-key routing guidance
|
|
5064
|
+
* is satisfied by per-conversation ids. A non-wire field for every other
|
|
5065
|
+
* provider client; the request param is omitted when absent.
|
|
5066
|
+
*/
|
|
5067
|
+
promptCacheKey?: string;
|
|
5058
5068
|
/**
|
|
5059
5069
|
* Internal per-request HTTP headers for managed-proxy usage attribution.
|
|
5060
5070
|
* Provider clients may pass these through SDK request options only when the
|
package/package.json
CHANGED