manifest_version: 2
app_key: doubao-api-test-taxi
name: 打车测试智能服务
tools:
  Taxi_search:
    description: 搜索可用打车方案，返回 plan_id、车型、价格、距离和预计到达时间。
    output:
      kind: execution_result
    login_type: no_login
  Taxi_order:
    description: 根据 plan_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
      car_type:
        type: string
        llm_visible: true
      price_yuan:
        type: float
        llm_visible: true
      status:
        type: string
        llm_visible: true
    tool_card_binding:
      Taxi_order: tpl.taxi_order
