@iqai/adk 0.0.11 → 0.0.12
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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -2737,7 +2737,7 @@ declare class McpError extends Error {
|
|
|
2737
2737
|
}
|
|
2738
2738
|
type McpSamplingRequest = z.infer<typeof CreateMessageRequestSchema>;
|
|
2739
2739
|
type McpSamplingResponse = z.infer<typeof CreateMessageResultSchema>;
|
|
2740
|
-
type SamplingHandler = (messages: LLMRequest) => LLMResponse
|
|
2740
|
+
type SamplingHandler = (messages: LLMRequest) => Promise<LLMResponse>;
|
|
2741
2741
|
|
|
2742
2742
|
declare class McpClientService {
|
|
2743
2743
|
private config;
|
package/dist/index.d.ts
CHANGED
|
@@ -2737,7 +2737,7 @@ declare class McpError extends Error {
|
|
|
2737
2737
|
}
|
|
2738
2738
|
type McpSamplingRequest = z.infer<typeof CreateMessageRequestSchema>;
|
|
2739
2739
|
type McpSamplingResponse = z.infer<typeof CreateMessageResultSchema>;
|
|
2740
|
-
type SamplingHandler = (messages: LLMRequest) => LLMResponse
|
|
2740
|
+
type SamplingHandler = (messages: LLMRequest) => Promise<LLMResponse>;
|
|
2741
2741
|
|
|
2742
2742
|
declare class McpClientService {
|
|
2743
2743
|
private config;
|