Bixby 操作中的 type(fetch) 和 type(search) 有什么区别?

What is the difference between type(fetch) and type(search) in Bixby actions?

Bixby 操作中的 type(fetch) 和 type(search) 有什么区别? 只是输入的数量不同吗?

Fetch 用于将内容加载为 lazy-source。当您希望拥有直到需要时才会获取的属性时,请考虑使用它。当您想通过 javascript(有或没有输入)处理请求时,请使用搜索。

property (accessories) {
    description (A list of accessories for a shoe.)
    type (Accessory)
    min (Optional) max(Many)
    lazy-source (FindAccessories)
  }

这是一个很好的提取示例:here