qlogicagent 2.24.15 → 2.24.16

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.
@@ -53,10 +53,14 @@ interface ModalityRegistryView {
53
53
  isToolProjected(purpose: ModelPurpose): boolean;
54
54
  }
55
55
  export declare function hostMediaModalityView(toolCatalog: ToolCatalog | undefined): ModalityRegistryView;
56
+ export interface MediaUnderstandingReference {
57
+ value: string;
58
+ parameter: "image_url" | "video_url" | "audio_url" | "asset_ref";
59
+ }
56
60
  export interface UnsupportedMediaRefs {
57
- image: string[];
58
- video: string[];
59
- audio: string[];
61
+ image: MediaUnderstandingReference[];
62
+ video: MediaUnderstandingReference[];
63
+ audio: MediaUnderstandingReference[];
60
64
  }
61
65
  /** Plan for the media a text-only main model can't consume, produced by detectUnsupportedMediaForTools. */
62
66
  export interface MediaUnderstandingPlan {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlogicagent",
3
- "version": "2.24.15",
3
+ "version": "2.24.16",
4
4
  "packageManager": "pnpm@10.23.0",
5
5
  "description": "XiaozhiClaw standard ACP Agent adapter",
6
6
  "type": "module",