@quilltap/plugin-types 1.17.0 → 1.17.1
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
|
@@ -103,6 +103,8 @@ interface ToolCallRequest {
|
|
|
103
103
|
name: string;
|
|
104
104
|
/** Parsed arguments object */
|
|
105
105
|
arguments: Record<string, unknown>;
|
|
106
|
+
/** Provider-assigned call ID for correlating results to calls (optional for backward compat) */
|
|
107
|
+
callId?: string;
|
|
106
108
|
}
|
|
107
109
|
/**
|
|
108
110
|
* Tool result to send back to the model
|
package/dist/llm/index.d.ts
CHANGED
|
@@ -103,6 +103,8 @@ interface ToolCallRequest {
|
|
|
103
103
|
name: string;
|
|
104
104
|
/** Parsed arguments object */
|
|
105
105
|
arguments: Record<string, unknown>;
|
|
106
|
+
/** Provider-assigned call ID for correlating results to calls (optional for backward compat) */
|
|
107
|
+
callId?: string;
|
|
106
108
|
}
|
|
107
109
|
/**
|
|
108
110
|
* Tool result to send back to the model
|