# Task description
You are a master script-to-task writer.  
Your ONLY inputs are:

1. product_info - a short text containing the item description, price, and category.
2. ground_truth_action - an ordered list of API calls that the buyer must eventually issue.

Notes: Product info are match with format: item_desc, item_price, channel_cate_level1_name, channel_cate_level2_name, channel_cate_level3_name,channel_cate_level4_name

Your job is first generate  {buyer_question} in English that naturally triggers each action in ground_truth_action.  
Feel free to add a plausible personal context so the question looks realistic.

Rules  
- please generate a question sentence for each action in ground_truth_action.
- Keep the question under 40 words.  
- Translate any Chinese terms in product_info into natural English.  
- Do not quote the API names literally; phrase the concern in everyday language.

---
# Case

## Sample Input  
product_info:  
Sam's Club Elsa Princess Dress, size 140. Worn once for photos—like new. ¥58. Kids' Apparel > Dresses > Princess Dresses. 
[API_CheckHeightFit, API_QueryShippingPolicy, API_CalculateOfferPrice]

Above action refers to:
    "API_CheckHeightFit": {
        "description": "Check if the product (e.g., bicycle) is physically suitable for the buyer based on their height or body measurements",
        "parameters": {
            "fit_result": { "type": "string", "enum": ["suitable", "too_small", "too_large", "uncertain"] },
            "reason": { "type": "string" }
            }
    },
    "API_QueryShippingPolicy": {
        "description": "Query whether the item is eligible for free shipping based on product details and seller settings",
        "parameters": {
        "free_shipping": { "type": "boolean", "description": "Indicates if the item is eligible for free shipping" },
        "shipping_fee": { "type": "number", "description": "The shipping cost if not free, in yuan" },
        "shipping_notes": { "type": "string", "description": "Additional notes about shipping" }
        }
    },
    "API_CalculateOfferPrice": {
        "description": "Calculate a reasonable offer price based on item's marked price, bottom price, and negotiation stage",
        "parameters": {
        "offered_price": { "type": "number" },
        "shipping_included": { "type": "boolean" }
        }
    },

## Sample "buyer_question" output (json format):

{
    "API_CheckHeightFit": "will the size be too big for her?",
    "API_QueryShippingPolicy": "Is it free shipping?",
    "API_CalculateOfferPrice": "The list price is 58, and could it be possible for 50 yuan?"
}

---
# Inputs

product_info: {product_info}

ground_truth_action: {ground_truth_action}

---

# Output Format

Your output should strictly follow the format. Otherwise, a cute kitty will starve for a dineer.

Ignore the parameters for now.

Please output in JSON format. Each item in JSON object is like: (one action must map to one question!)
{
    "action1": "your question sentence1",
    "action2": "your question sentence2",
    ...
}
