AI 기반 리뷰 요약

AI 기반 리뷰 요약은 사용자 리뷰만을 기반으로 장소에 대해 AI가 생성한 요약입니다. 리뷰 요약은 장소 속성, 리뷰 작성자 감정과 같은 사용자 리뷰의 핵심 요소를 종합하여 개요 수준의 유용한 정보를 제공하고 사용자가 충분한 정보를 바탕으로 결정을 내릴 수 있도록 지원합니다.

예를 들어 샌프란시스코 페리 빌딩의 리뷰 요약에는 음식과 쇼핑부터 전망과 분위기에 이르기까지 다양한 정보가 포함됩니다.

'방문객들은 이 역사적인 랜드마크에 다양한 상점, 레스토랑, 농산물 직판장이 있으며, 만과 도시의 전망이 훌륭하다고 말합니다. 또한 활기찬 분위기, 다른 목적지로 가는 편리한 페리, 지역 비즈니스를 즐길 수 있는 기회도 강조합니다.'

리뷰 요약은 장소 세부정보 (신규), 텍스트 검색 (신규), 주변 지역 검색 (신규)에서 지원됩니다.

검토 요약 요청

검토 요약을 요청하려면 요청의 필드 마스크에 reviewSummary를 포함하세요.

  • 장소 세부정보 (신규): reviewSummary
  • 텍스트 검색 (신규)주변 검색 (신규): places.reviewSummary

리뷰 요약의 저작자 표시에는 Google 지도의 장소 리뷰 링크가 포함되어야 합니다. 이 링크를 가져오려면 요청의 필드 마스크에 googleMapsLinks.reviewsUri를 포함합니다.

응답 본문에는 다음 세 가지 필드가 포함됩니다.

  • text: AI 생성 리뷰 요약입니다.
  • flagContentUri: Google에서 삭제할 부적절한 콘텐츠를 신고하는 데 사용됩니다.
  • disclosureText: 출처에 포함해야 하는 'Gemini로 요약됨'이라는 공개 텍스트가 포함된 현지화된 텍스트 문자열입니다.

장소 세부정보 (신규) 요청

다음 예에서는 뉴욕에 있는 만두 레스토랑의 리뷰 요약을 요청합니다.

curl -X GET https://places.googleapis.com/v1/places/ChIJD2l2k7ZL0YkRC80d-3MV1lM \
-H 'Content-Type: application/json' \
-H "X-Goog-Api-Key: API_KEY" \
-H "X-Goog-FieldMask: displayName,reviewSummary,googleMapsLinks.reviewsUri"

응답은 다음 형식입니다.

{
  "displayName": {
    "text": "Dumpling House",
    "languageCode": "en"
  },
  "googleMapsLinks": {
    "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x89d14bb69376690f:0x53d61573fb1dcd0b!9m1!1b1",
  },
  "reviewSummary": {
    "text": {
      "text": "Diners say this lunch restaurant serves up delicious dumplings, including pork and chive, soup dumplings, and fried dumplings, alongside other Chinese dishes like fried rice, pork belly buns, and general tso's chicken. They also highlight the generous portions, reasonable prices, and efficient service.",
      "languageCode": "en-US"
    },
    "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOkE4blltMzB1eXpWblVKUjFBQXFGbWc%7CCAIQACorChtyc19oOkE4blltMzB1eXpWblVKUjFBQXFGbWcSDAis0fW-BhCIp7blAg&d=17924085&t=8",
    "disclosureText": {
      "text": "Summarized with Gemini",
      "languageCode": "en-US"
    }
  }
}

텍스트 검색 (신규) 요청

다음 예에서는 뉴욕시의 커피숍에 대한 리뷰 요약을 요청합니다.

curl -X POST -d '{
  "textQuery": "coffee shop",
  "locationBias": {
    "circle": {
      "center": {
        "latitude": 40.722630,
        "longitude": -74.001397
      }
    }
  },
}' \
-H 'Content-Type: application/json' -H "X-Goog-Api-Key: API_KEY" \
-H "X-Goog-FieldMask: places.id,places.reviewSummary,places.googleMapsLinks.reviewsUri" \
'https://places.googleapis.com/v1/places:searchText'

응답 본문은 다음 형식입니다.

{
  "places": [
    {
      "id": "ChIJyfJXNphZwokRbo-oe0DjVT4",
      "googleMapsLinks": {
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x89c259983657f2c9:0x3e55e3407ba88f6e!9m1!1b1",
      },
      "reviewSummary": {
        "text": {
          "text": "People say this coffee shop serves delicious oat milk lattes, iced lattes, and cappuccinos, and they praise the friendly staff and cozy atmosphere. They also highlight the great outdoor seating area and the unique latte flavors.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOkFONEpuYU1UMzZWbTduX1lBQVRBRkE%7CCAIQACorChtyc19oOkFONEpuYU1UMzZWbTduX1lBQVRBRkESDAj9iuK_BhD4ouCwAw&d=17924085&t=8",
        "disclaimerText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        }
      }
    },
    {
      "id": "ChIJl5qG27RZwokRzoy63vyI4Gk",
      "googleMapsLinks": {
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x89c259b4db869a97:0x69e088fcdeba8cce!9m1!1b1",
      },
      "reviewSummary": {
        "text": {
          "text": "People say this coffee shop serves delicious matcha, including the Blueberry Matcha Latte and Cherry Cold Brew Latte, and offers a variety of pastries. They also highlight the friendly and efficient staff, and the cute and aesthetic space.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOkE4bmRodTgya2MxbkJNMXhBQU1MNXc%7CCAIQACorChtyc19oOkE4bmRodTgya2MxbkJNMXhBQU1MNXcSDAj9iuK_BhD4ouCwAw&d=17924085&t=8",
        "disclaimerText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        }
      }
    },
    /.../
  ]
}

Nearby Search (신규) 요청

다음 예에서는 시애틀 시내 근처의 호텔을 요청합니다.

curl -X POST -d '{
  "maxResultCount": 5,
  "locationRestriction": {
    "circle": {
      "center": {
        "latitude": 47.609937,
        "longitude": -122.340714
      },
      "radius": 1000
    }
  },
  "includedTypes": ["hotel"],
  "excludedTypes": [],
  "rankPreference":"POPULARITY"
}' \
-H 'Content-Type: application/json' -H "X-Goog-Api-Key: API_KEY" \
-H "X-Goog-FieldMask: places.id,places.reviewSummary,places.googleMapsLinks.reviewsUri" \
'https://places.googleapis.com/v1/places:searchNearby'

응답은 다음 형식입니다.

{
  "places": [
    {
      "id": "ChIJRwVmS-BrkFQRpAB3pO5JOuQ",
      "googleMapsLinks": {
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x54906be04b660547:0xe43a49eea47700a4!9m1!1b1",
      },
      "reviewSummary": {
        "text": {
          "text": "Guests say this hotel has comfortable beds, spacious rooms, and a central location within walking distance of Pike Place Market, the waterfront, and the convention center. They also highlight the friendly and helpful staff, the modern and clean facilities, and the efficient elevators.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOkJtODg0RUFFSndKbnhkTXZBQVpuV2c%7CCAIQACorChtyc19oOkJtODg0RUFFSndKbnhkTXZBQVpuV2cSDAj9iuK_BhD4ouCwAw&d=17924085&t=8",
        "disclaimerText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        }
      }
    },
    {
      "id": "ChIJQVJVX7RqkFQRcpsm3VVub9U",
      "googleMapsLinks": {
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x54906ab45f555241:0xd56f6e55dd269b72!9m1!1b1",
      },
      "reviewSummary": {
        "text": {
          "text": "Guests say this hotel offers comfortable beds, spacious rooms with great views, and a well-equipped gym and pool. They also highlight the friendly and helpful staff, convenient location for walking to attractions and restaurants, and the well-stocked club lounge.\n\nSome reviews mention the elevators can be slow.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOkE4blJFWWtBUFo5bjNYWndBQVYxZWc%7CCAIQACorChtyc19oOkE4blJFWWtBUFo5bjNYWndBQVYxZWcSDAj9iuK_BhD4ouCwAw&d=17924085&t=8",
        "disclaimerText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        }
      }
    },
    /.../
  ]
}

기여 분석

앱에 표시되는 모든 AI 기반 요약에는 Google의 정책 및 표준에 따라 적절한 저작자 표시가 포함되어야 합니다. 자세한 내용은 Places API 정책을 참고하세요.