manifest_version: 2
app_key: doubao-api-test-milk-tea
name: 奶茶测试智能服务
tools:
  MilkTea_search:
    description: 根据口味、场景和偏好搜索奶茶商品，返回 sku_id、名称、甜度、价格和推荐理由。
    output:
      kind: execution_result
    login_type: no_login
  MilkTea_order:
    description: 根据 sku_id 创建奶茶订单，返回可出卡的智能服务订单实体。
    output:
      kind: entities
      entity_types:
        - product
    login_type: no_login
entities:
  product:
    schema:
      product_id:
        type: string
        is_entity_id: true
      entity_type:
        type: string
        llm_visible: false
      name:
        type: string
        llm_visible: true
      sugar:
        type: string
        llm_visible: true
      quantity:
        type: int
        llm_visible: true
      price_yuan:
        type: float
        llm_visible: true
      status:
        type: string
        llm_visible: true
      selling_point:
        type: string
        llm_visible: true
    tool_card_binding:
      MilkTea_order: tpl.milk_tea_order
