@quilltap/plugin-types 1.16.1 → 1.16.2
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/llm/index.d.mts +2 -0
- package/dist/llm/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/llm/index.d.mts
CHANGED
|
@@ -230,6 +230,8 @@ interface LLMParams {
|
|
|
230
230
|
webSearchEnabled?: boolean;
|
|
231
231
|
/** Provider-specific parameters from profile */
|
|
232
232
|
profileParameters?: Record<string, unknown>;
|
|
233
|
+
/** Previous response ID for conversation chaining (OpenAI Responses API) */
|
|
234
|
+
previousResponseId?: string;
|
|
233
235
|
}
|
|
234
236
|
/**
|
|
235
237
|
* Token usage statistics
|
package/dist/llm/index.d.ts
CHANGED
|
@@ -230,6 +230,8 @@ interface LLMParams {
|
|
|
230
230
|
webSearchEnabled?: boolean;
|
|
231
231
|
/** Provider-specific parameters from profile */
|
|
232
232
|
profileParameters?: Record<string, unknown>;
|
|
233
|
+
/** Previous response ID for conversation chaining (OpenAI Responses API) */
|
|
234
|
+
previousResponseId?: string;
|
|
233
235
|
}
|
|
234
236
|
/**
|
|
235
237
|
* Token usage statistics
|