Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed
Error code:   DatasetGenerationError
Exception:    TypeError
Message:      Couldn't cast array of type
struct<가수: string, 날짜: string, 도시: string, 도착_공항: string, 앨범: string, 이벤트_유형: string, 이벤트_이름: string, 장르: string, 장치: string, 좌석_등급: string, 출발_공항: string, 출시연도: string, 트랙: string, 티켓_수: string, 항공사: string, 항공편_출발_날짜: string>
to
{'가수': Value('string'), '객실_수': Value('string'), '등급': Value('string'), '숙박기간': Value('string'), '숙소명': Value('string'), '식당명': Value('string'), '예약시간': Value('string'), '예약일': Value('string'), '위치': Value('string'), '장소': Value('string'), '장치': Value('string'), '좌석_수': Value('string'), '체크인_날짜': Value('string'), '출시연도': Value('string'), '트랙': Value('string'), '흡연허용_유무': Value('string')}
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1831, in _prepare_split_single
                  writer.write_table(table)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 714, in write_table
                  pa_table = table_cast(pa_table, self._schema)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2272, in table_cast
                  return cast_table_to_schema(table, schema)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2224, in cast_table_to_schema
                  cast_array_to_feature(
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1795, in wrapper
                  return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2052, in cast_array_to_feature
                  casted_array_values = _c(array.values, feature.feature)
                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1797, in wrapper
                  return func(array, *args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2002, in cast_array_to_feature
                  _c(array.field(name) if name in array_fields else null_array, subfeature)
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1797, in wrapper
                  return func(array, *args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2052, in cast_array_to_feature
                  casted_array_values = _c(array.values, feature.feature)
                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1797, in wrapper
                  return func(array, *args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2002, in cast_array_to_feature
                  _c(array.field(name) if name in array_fields else null_array, subfeature)
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1797, in wrapper
                  return func(array, *args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2002, in cast_array_to_feature
                  _c(array.field(name) if name in array_fields else null_array, subfeature)
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 1797, in wrapper
                  return func(array, *args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2092, in cast_array_to_feature
                  raise TypeError(f"Couldn't cast array of type\n{_short_str(array.type)}\nto\n{_short_str(feature)}")
              TypeError: Couldn't cast array of type
              struct<가수: string, 날짜: string, 도시: string, 도착_공항: string, 앨범: string, 이벤트_유형: string, 이벤트_이름: string, 장르: string, 장치: string, 좌석_등급: string, 출발_공항: string, 출시연도: string, 트랙: string, 티켓_수: string, 항공사: string, 항공편_출발_날짜: string>
              to
              {'가수': Value('string'), '객실_수': Value('string'), '등급': Value('string'), '숙박기간': Value('string'), '숙소명': Value('string'), '식당명': Value('string'), '예약시간': Value('string'), '예약일': Value('string'), '위치': Value('string'), '장소': Value('string'), '장치': Value('string'), '좌석_수': Value('string'), '체크인_날짜': Value('string'), '출시연도': Value('string'), '트랙': Value('string'), '흡연허용_유무': Value('string')}
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1339, in compute_config_parquet_and_info_response
                  parquet_operations = convert_to_parquet(builder)
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 972, in convert_to_parquet
                  builder.download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 894, in download_and_prepare
                  self._download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 970, in _download_and_prepare
                  self._prepare_split(split_generator, **prepare_split_kwargs)
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1702, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1858, in _prepare_split_single
                  raise DatasetGenerationError("An error occurred while generating the dataset") from e
              datasets.exceptions.DatasetGenerationError: An error occurred while generating the dataset

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

dialogue_id
string
services
list
turns
list
1_00000
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "2019-03-08" ], "slot": "예약일", "values": [ "8일" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약일", "start": 7 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": [ "8일" ], "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "안녕하세요. 8일에 식당 예약 좀 부탁드려도 될까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "식당, 위치, 시간 중 선호하시는 사항이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "P.f. 챙스" ], "slot": "식당명", "values": [ "P.f. 챙스" ] }, { "act": "INFORM", "canonical_values": [ "12:00" ], "slot": "예약시간", "values": [ "오후 12시" ] }, { "act": "INFORM", "canonical_values": [ "코르테 마데라" ], "slot": "위치", "values": [ "코르테 마데라" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 19, "slot": "식당명", "start": 12 }, { "exclusive_end": 27, "slot": "예약시간", "start": 21 }, { "exclusive_end": 7, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "P.f. 챙스" ], "예약시간": [ "오후 12시" ], "예약일": [ "8일" ], "위치": [ "코르테 마데라" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "코르테 마데라에 있는 P.f. 챙스에 오후 12시로 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "P.f. 챙스" ], "slot": "식당명", "values": [ "P.F. 창스" ] }, { "act": "CONFIRM", "canonical_values": [ "코르테 마데라" ], "slot": "위치", "values": [ "코르테 마데라" ] }, { "act": "CONFIRM", "canonical_values": [ "12:00" ], "slot": "예약시간", "values": [ "오후 12시" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-08" ], "slot": "예약일", "values": [ "3월 8일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 7, "slot": "식당명", "start": 0 }, { "exclusive_end": 15, "slot": "위치", "start": 8 }, { "exclusive_end": 29, "slot": "예약시간", "start": 23 }, { "exclusive_end": 22, "slot": "예약일", "start": 17 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "P.F. 창스 코르테 마데라에 3월 8일 오후 12시에 2명 예약을 확인해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "P.f. 챙스", "P.F. 창스" ], "예약시간": [ "오후 12시" ], "예약일": [ "8일", "3월 8일" ], "위치": [ "코르테 마데라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그렇게 해주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] }, { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "P.f. 챙스", "예약시간": "12:00", "예약일": "2019-03-08", "위치": "코르테 마데라", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송합니다만 예약을 완료하지 못했으니 다른 도와드릴 사항이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "베니시모 레스토랑 & 바" ], "slot": "식당명", "values": [ "베니시모" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 7, "slot": "식당명", "start": 3 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "베니시모" ], "예약시간": [ "오후 12시" ], "예약일": [ "8일", "3월 8일" ], "위치": [ "코르테 마데라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "대신 베니시모로 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "베니시모 레스토랑 & 바" ], "slot": "식당명", "values": [ "베니시모 레스토랑 & 바" ] }, { "act": "CONFIRM", "canonical_values": [ "코르테 마데라" ], "slot": "위치", "values": [ "코르테 마데라" ] }, { "act": "CONFIRM", "canonical_values": [ "12:00" ], "slot": "예약시간", "values": [ "오후 12시" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-08" ], "slot": "예약일", "values": [ "3월 8일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 43, "slot": "식당명", "start": 30 }, { "exclusive_end": 28, "slot": "위치", "start": 21 }, { "exclusive_end": 19, "slot": "예약시간", "start": 13 }, { "exclusive_end": 12, "slot": "예약일", "start": 7 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "물론입니다만 3월 8일 오후 12시에 코르테 마데라의 베니시모 레스토랑 & 바에 2명으로 예약을 확인해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "가격_범위", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "채식옵션_유무", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "채식옵션_유무", "가격_범위" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "베니시모", "베니시모 레스토랑 & 바" ], "예약시간": [ "오후 12시" ], "예약일": [ "8일", "3월 8일" ], "위치": [ "코르테 마데라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "물론이요, 채식 옵션이 있는지랑 음식 가격대가 얼마나 되는지 알려주실래요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "보통" ], "slot": "가격_범위", "values": [ "보통" ] }, { "act": "INFORM", "canonical_values": [ "False" ], "slot": "채식옵션_유무", "values": [ "False" ] }, { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "베니시모 레스토랑 & 바", "예약시간": "12:00", "예약일": "2019-03-08", "위치": "코르테 마데라", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "베니시모 레스토랑 & 바", "앨범": null, "야외좌석_유무": "False", "예약시간": "12:00", "예약일": "2019-03-08", "위치": "코르테 마데라", "장르": null, "장소": null, "장치": null, "전화번호": "415-927-2316", "종류": "이탈리아 요리", "좌석_수": "2", "주소": "18 타말파이스 드라이브", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.10", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약은 완료되었습니다만 안타깝게도 채식 옵션은 제공되지 않으며 가격대는 보통입니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "베니시모", "베니시모 레스토랑 & 바" ], "예약시간": [ "오후 12시" ], "예약일": [ "8일", "3월 8일" ], "위치": [ "코르테 마데라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "알겠습니다, 정말 고맙습니다." }, { "frames": [ { "actions": [ { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "걱정하지 않으셔도 됩니다만 추가로 도와드릴 사항이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "베니시모", "베니시모 레스토랑 & 바" ], "예약시간": [ "오후 12시" ], "예약일": [ "8일", "3월 8일" ], "위치": [ "코르테 마데라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 그게 다입니다. 감사합니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 보내시기 바랍니다." } ]
1_00001
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "에인션트 스촨" ], "slot": "식당명", "values": [ "에인션트 스촨" ] }, { "act": "INFORM", "canonical_values": [ "11:30" ], "slot": "예약시간", "values": [ "오전 11시 30분" ] }, { "act": "INFORM", "canonical_values": [ "2019-03-11" ], "slot": "예약일", "values": [ "이번 달 11일" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 28, "slot": "식당명", "start": 21 }, { "exclusive_end": 19, "slot": "예약시간", "start": 9 }, { "exclusive_end": 8, "slot": "예약일", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "에인션트 스촨" ], "예약시간": [ "오전 11시 30분" ], "예약일": [ "이번 달 11일" ], "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "이번 달 11일 오전 11시 30분에 에인션트 스촨에 자리 하나 예약해 주시겠어요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "식당 예약을 원하시는 도시는 어디입니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "버터플라이 레스토랑" ], "slot": "식당명", "values": [ "버터플라이 레스토랑" ] }, { "act": "INFORM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 21, "slot": "식당명", "start": 11 }, { "exclusive_end": 6, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "버터플라이 레스토랑" ], "예약시간": [ "오전 11시 30분" ], "예약일": [ "이번 달 11일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "샌프란시스코에 있는 버터플라이 레스토랑에 자리 하나 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "버터플라이 레스토랑" ], "slot": "식당명", "values": [ "버터플라이 레스토랑" ] }, { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "11:30" ], "slot": "예약시간", "values": [ "오전 11시 30분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-11" ], "slot": "예약일", "values": [ "3월 11일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 37, "slot": "식당명", "start": 27 }, { "exclusive_end": 25, "slot": "위치", "start": 19 }, { "exclusive_end": 17, "slot": "예약시간", "start": 7 }, { "exclusive_end": 6, "slot": "예약일", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "3월 11일 오전 11시 30분에 샌프란시스코의 버터플라이 레스토랑에서 2명으로 예약을 원하시는 것으로 확인해도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "종류", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "종류" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "버터플라이 레스토랑" ], "예약시간": [ "오전 11시 30분" ], "예약일": [ "이번 달 11일", "3월 11일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "좋습니다. 거기서는 무슨 요리를 하나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "아시아식" ], "slot": "종류", "values": [ "아시아식 요리" ] }, { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "버터플라이 레스토랑", "예약시간": "11:30", "예약일": "2019-03-11", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "버터플라이 레스토랑", "앨범": null, "야외좌석_유무": "False", "예약시간": "11:30", "예약일": "2019-03-11", "위치": "샌프란시스코", "장르": null, "장소": null, "장치": null, "전화번호": "415-864-8999", "종류": "아시아식", "좌석_수": "2", "주소": "33 디 엠바카데로", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.00", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 38, "slot": "종류", "start": 31 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "귀하의 좌석 예약이 성공적으로 완료되었으며 해당 식당은 아시아식 요리를 제공합니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "가격_범위", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "평점", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "가격_범위", "평점" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "버터플라이 레스토랑" ], "예약시간": [ "오전 11시 30분" ], "예약일": [ "이번 달 11일", "3월 11일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "그 식당의 사용자 평점과 가격대가 비싼지 좀 알려주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "4.00" ], "slot": "평점", "values": [ "4.0점" ] }, { "act": "INFORM", "canonical_values": [ "보통" ], "slot": "가격_범위", "values": [ "보통" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 22, "slot": "평점", "start": 18 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "가격대는 보통이며 사용자 평점은 4.0점으로 확인됩니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "버터플라이 레스토랑" ], "예약시간": [ "오전 11시 30분" ], "예약일": [ "이번 달 11일", "3월 11일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "정말 감사드립니다." }, { "frames": [ { "actions": [ { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "다른 도와드릴 사항이 있으십니까?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "버터플라이 레스토랑" ], "예약시간": [ "오전 11시 30분" ], "예약일": [ "이번 달 11일", "3월 11일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 감사합니다, 그게 전부입니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 되시기 바랍니다." } ]
1_00002
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "퍼시피카" ], "slot": "위치", "values": [ "퍼시피카" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 4, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": [ "퍼시피카" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "퍼시피카에 있는 식당들을 예약하려고 하는데 확인해 주시겠어요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "원하시는 특정 식당이 있으신지와 예약 희망 시간을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "푸에르토 27" ], "slot": "식당명", "values": [ "푸에르토 27" ] }, { "act": "INFORM", "canonical_values": [ "13:15" ], "slot": "예약시간", "values": [ "오후 1시 15분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 7, "slot": "식당명", "start": 0 }, { "exclusive_end": 19, "slot": "예약시간", "start": 10 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "푸에르토 27" ], "예약시간": [ "오후 1시 15분" ], "예약일": null, "위치": [ "퍼시피카" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "푸에르토 27에서 오후 1시 15분에 예약 가능한지 확인해 주시겠어요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "푸에르토 27" ], "slot": "식당명", "values": [ "푸에르토 27" ] }, { "act": "CONFIRM", "canonical_values": [ "퍼시피카" ], "slot": "위치", "values": [ "퍼시피카" ] }, { "act": "CONFIRM", "canonical_values": [ "13:15" ], "slot": "예약시간", "values": [ "오후 1시 15분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 28, "slot": "식당명", "start": 21 }, { "exclusive_end": 19, "slot": "위치", "start": 15 }, { "exclusive_end": 45, "slot": "예약시간", "start": 36 }, { "exclusive_end": 35, "slot": "예약일", "start": 30 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "확인차 다시 여쭙겠습니다만 퍼시피카의 푸에르토 27에 3월 1일 오후 1시 15분, 2명으로 예약을 원하시는 것이 맞습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "푸에르토 27" ], "예약시간": [ "오후 1시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "퍼시피카" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그렇게 진행해 주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "푸에르토 27", "예약시간": "13:15", "예약일": "2019-03-01", "위치": "퍼시피카", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "푸에르토 27", "앨범": null, "야외좌석_유무": "True", "예약시간": "13:30", "예약일": "2019-03-01", "위치": "퍼시피카", "장르": null, "장소": null, "장치": null, "전화번호": "650-733-7343", "종류": "페루식", "좌석_수": "2", "주소": "525 크레스피 드라이브", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.10", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "식당 예약이 완료되었습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "푸에르토 27" ], "예약시간": [ "오후 1시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "퍼시피카" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "정말 감사합니다, 지금은 이 정도면 됐습니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 되시기 바랍니다." } ]
1_00003
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "데이트 때문에 저녁 식당 예약하려고 하는데 식당에 좌석 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "원하시는 시간과 장소를 말씀해 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "20:00" ], "slot": "예약시간", "values": [ "밤 8시쯤" ] }, { "act": "INFORM", "canonical_values": [ "산호세" ], "slot": "위치", "values": [ "산호세 지역" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 5, "slot": "예약시간", "start": 0 }, { "exclusive_end": 22, "slot": "위치", "start": 16 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "밤 8시쯤" ], "예약일": null, "위치": [ "산호세 지역" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "밤 8시쯤으로 예약해 주시고 산호세 지역에서 괜찮은 곳으로 알아봐 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "특정 식당을 염두에 두고 계십니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "리틀 후난" ], "slot": "식당명", "values": [ "리틀 후난" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 5, "slot": "식당명", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "밤 8시쯤" ], "예약일": null, "위치": [ "산호세 지역" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "리틀 후난에 좌석 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "리틀 후난" ], "slot": "식당명", "values": [ "리틀 후난" ] }, { "act": "CONFIRM", "canonical_values": [ "산호세" ], "slot": "위치", "values": [ "산호세" ] }, { "act": "CONFIRM", "canonical_values": [ "20:00" ], "slot": "예약시간", "values": [ "오후 8시" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 14, "slot": "식당명", "start": 9 }, { "exclusive_end": 3, "slot": "위치", "start": 0 }, { "exclusive_end": 27, "slot": "예약시간", "start": 22 }, { "exclusive_end": 21, "slot": "예약일", "start": 16 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "산호세에 위치한 리틀 후난에 3월 1일 오후 8시에 2명으로 예약해 드려도 괜찮습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "밤 8시쯤", "오후 8시" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 좋아요. 지금 바로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] }, { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "리틀 후난", "예약시간": "20:00", "예약일": "2019-03-01", "위치": "산호세", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약을 처리하지 못해 불편을 끼쳐 드린 점 사과드립니다." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "17:15" ], "slot": "예약시간", "values": [ "오후 5시 15분" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 27, "slot": "예약시간", "start": 18 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "오후 5시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "리틀 후난에 다시 예약해 주시고 오후 5시 15분으로 해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "리틀 후난" ], "slot": "식당명", "values": [ "리틀 후난" ] }, { "act": "CONFIRM", "canonical_values": [ "산호세" ], "slot": "위치", "values": [ "산호세" ] }, { "act": "CONFIRM", "canonical_values": [ "17:15" ], "slot": "예약시간", "values": [ "오후 5시 15분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 14, "slot": "식당명", "start": 9 }, { "exclusive_end": 3, "slot": "위치", "start": 0 }, { "exclusive_end": 31, "slot": "예약시간", "start": 22 }, { "exclusive_end": 21, "slot": "예약일", "start": 16 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "산호세에 위치한 리틀 후난에 3월 1일 오후 5시 15분, 예약 인원은 2명입니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "오후 5시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 맞아요. 이번엔 예약이 잘 됐으면 좋겠어요." }, { "frames": [ { "actions": [ { "act": "OFFER", "canonical_values": [ "리틀 후난" ], "slot": "식당명", "values": [ "리틀 후난" ] }, { "act": "OFFER", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] }, { "act": "OFFER", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "OFFER", "canonical_values": [ "17:00" ], "slot": "예약시간", "values": [ "오후 5시" ] }, { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "리틀 후난", "예약시간": "17:15", "예약일": "2019-03-01", "위치": "산호세", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "저렴", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "리틀 후난", "앨범": null, "야외좌석_유무": "False", "예약시간": "17:00", "예약일": "2019-03-01", "위치": "산호세", "장르": null, "장소": null, "장치": null, "전화번호": "408-371-2968", "종류": "중식", "좌석_수": "2", "주소": "1882 커트너 애비뉴", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "3.90", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 44, "slot": "식당명", "start": 39 }, { "exclusive_end": 51, "slot": "예약일", "start": 46 }, { "exclusive_end": 57, "slot": "예약시간", "start": 52 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송하지만 제공하신 정보로는 식당을 예약할 수 없었습니다만 원하신다면 리틀 후난에 3월 1일 오후 5시, 2명으로 예약해 드리겠습니다." }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "오후 5시" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "정말요? 그거면 괜찮아요. 그렇게 해 주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "리틀 후난", "예약시간": "17:00", "예약일": "2019-03-01", "위치": "산호세", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "저렴", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "리틀 후난", "앨범": null, "야외좌석_유무": "False", "예약시간": "17:00", "예약일": "2019-03-01", "위치": "산호세", "장르": null, "장소": null, "장치": null, "전화번호": "408-371-2968", "종류": "중식", "좌석_수": "2", "주소": "1882 커트너 애비뉴", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "3.90", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "귀하의 예약을 정상적으로 완료하여 테이블을 확정해 드렸습니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "평점", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "평점" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "오후 5시" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "드디어 됐네요, 정말 감사합니다, 가시기 전에 그 식당 이용자 평점 좀 알려주실래요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "3.90" ], "slot": "평점", "values": [ "3.9점" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 19, "slot": "평점", "start": 15 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "리틀 후난의 사용자 평점은 3.9점으로 확인됩니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "채식옵션_유무", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "채식옵션_유무" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "오후 5시" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "혹시 그 식당에 채식 메뉴도 있나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "False" ], "slot": "채식옵션_유무", "values": [ "False" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송합니다만 해당 식당에서는 채식 메뉴를 제공하지 않습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "오후 5시" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "괜찮아요, 알려주셔서 감사합니다." }, { "frames": [ { "actions": [ { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "천만에요, 다른 도와드릴 사항이 있으십니까?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리틀 후난" ], "예약시간": [ "오후 5시" ], "예약일": [ "3월 1일" ], "위치": [ "산호세 지역", "산호세" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아, 괜찮습니다, 식당 예약만 잘 되어 있으면 됐으니 다시 한 번 감사드립니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "즐거운 저녁 보내시기 바랍니다." } ]
1_00004
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "17:30" ], "slot": "예약시간", "values": [ "오늘 저녁 5시 30분" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 12, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오늘 저녁 5시 30분" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오늘 저녁 5시 30분에 식당 예약 좀 해줄래?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약을 원하시는 식당명을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "미 사카테카스 패밀리 레스토랑" ], "slot": "식당명", "values": [ "미 사카테카스" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 7, "slot": "식당명", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "미 사카테카스" ], "예약시간": [ "오늘 저녁 5시 30분" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "미 사카테카스에 자리 있는지 좀 알아봐 줄래?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "미 사카테카스 패밀리 레스토랑의 위치가 어디인지 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "아메리칸 캐니언" ], "slot": "위치", "values": [ "아메리칸 캐니언" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 8, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "미 사카테카스" ], "예약시간": [ "오늘 저녁 5시 30분" ], "예약일": null, "위치": [ "아메리칸 캐니언" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아메리칸 캐니언에 있어." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "미 사카테카스 패밀리 레스토랑" ], "slot": "식당명", "values": [ "미 사카테카스 패밀리 레스토랑" ] }, { "act": "CONFIRM", "canonical_values": [ "아메리칸 캐니언" ], "slot": "위치", "values": [ "아메리칸 캐니언" ] }, { "act": "CONFIRM", "canonical_values": [ "17:30" ], "slot": "예약시간", "values": [ "오후 5:30" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 63, "slot": "식당명", "start": 47 }, { "exclusive_end": 41, "slot": "위치", "start": 33 }, { "exclusive_end": 31, "slot": "예약시간", "start": 24 }, { "exclusive_end": 23, "slot": "예약일", "start": 18 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "다음 내용을 확인해 주시겠습니까 3월 1일 오후 5:30에 아메리칸 캐니언에 위치한 미 사카테카스 패밀리 레스토랑에서 2명, 테이블 1개로 예약을 진행해 드려도 괜찮겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "종류", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "종류" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "미 사카테카스", "미 사카테카스 패밀리 레스토랑" ], "예약시간": [ "오늘 저녁 5시 30분", "오후 5:30" ], "예약일": [ "3월 1일" ], "위치": [ "아메리칸 캐니언" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "확인했어, 거기서 무슨 음식 파는지 알려줄래?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "멕시코식" ], "slot": "종류", "values": [ "멕시코식 요리" ] }, { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "미 사카테카스 패밀리 레스토랑", "예약시간": "17:30", "예약일": "2019-03-01", "위치": "아메리칸 캐니언", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "미 사카테카스 패밀리 레스토랑", "앨범": null, "야외좌석_유무": "False", "예약시간": "17:30", "예약일": "2019-03-01", "위치": "아메리칸 캐니언", "장르": null, "장소": null, "장치": null, "전화번호": "707-645-7459", "종류": "멕시코식", "좌석_수": "2", "주소": "100 웨스트 아메리칸 캐니언 로드", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.00", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 31, "slot": "종류", "start": 24 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 성공적으로 완료되었으며 해당 식당은 멕시코식 요리를 제공합니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "미 사카테카스", "미 사카테카스 패밀리 레스토랑" ], "예약시간": [ "오늘 저녁 5시 30분", "오후 5:30" ], "예약일": [ "3월 1일" ], "위치": [ "아메리칸 캐니언" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "좋아, 그게 다야." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "남은 하루도 평안히 보내시기 바랍니다." } ]
1_00005
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "식당에 자리 하나 예약해야겠어요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "몇 시로 예약해 드리면 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "13:15" ], "slot": "예약시간", "values": [ "오후 1시 15분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오후 1시 15분" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오후 1시 15분으로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 위치와 식당 이름을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "삽 버" ], "slot": "식당명", "values": [ "삽 버" ] }, { "act": "INFORM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 14, "slot": "식당명", "start": 11 }, { "exclusive_end": 6, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "삽 버" ], "예약시간": [ "오후 1시 15분" ], "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "샌프란시스코에 있는 삽 버에 자리 하나 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "삽 버" ], "slot": "식당명", "values": [ "삽 버" ] }, { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "13:15" ], "slot": "예약시간", "values": [ "오후 1시 15분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 46, "slot": "식당명", "start": 43 }, { "exclusive_end": 41, "slot": "위치", "start": 35 }, { "exclusive_end": 33, "slot": "예약시간", "start": 24 }, { "exclusive_end": 23, "slot": "예약일", "start": 18 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "다음 내용을 확인해 주시겠습니까 3월 1일 오후 1시 15분에 샌프란시스코의 삽 버에서 2명 자리를 예약해 드리는 것으로 맞으신가요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "주소", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "주소" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "삽 버" ], "예약시간": [ "오후 1시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 다 됐는데 주소가 어디예요?" }, { "frames": [ { "actions": [ { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] }, { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "삽 버", "예약시간": "13:15", "예약일": "2019-03-01", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송합니다만 예약을 진행하지 못해 다른 도와드릴 사항이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "삽 버" ], "예약시간": [ "오후 1시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 괜찮아요, 고맙습니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "물론입니다. 좋은 하루 되시기 바랍니다." } ]
1_00006
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "트립티크" ], "slot": "식당명", "values": [ "트립티크" ] }, { "act": "INFORM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 29, "slot": "식당명", "start": 25 }, { "exclusive_end": 20, "slot": "위치", "start": 14 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "트립티크" ], "예약시간": null, "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "테이블 예약하려고 하는데 샌프란시스코에 있는 트립티크에 예약 잡아 주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "물론입니다만 희망하시는 시간을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "18:15" ], "slot": "예약시간", "values": [ "오후 6시 15분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "트립티크" ], "예약시간": [ "오후 6시 15분" ], "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오후 6시 15분으로 예약 부탁드립니다." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "트립티크" ], "slot": "식당명", "values": [ "트립티크" ] }, { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "18:15" ], "slot": "예약시간", "values": [ "오후 6시 15분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명 자리" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 39, "slot": "식당명", "start": 35 }, { "exclusive_end": 34, "slot": "위치", "start": 28 }, { "exclusive_end": 26, "slot": "예약시간", "start": 17 }, { "exclusive_end": 16, "slot": "예약일", "start": 11 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "제가 이해한 내용은 3월 1일 오후 6시 15분에 샌프란시스코 트립티크에서 2명 자리로 예약을 원하신다는 것입니다." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "2019-03-08" ], "slot": "예약일", "values": [ "다음 주 금요일" ] }, { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 20, "slot": "예약일", "start": 12 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "트립티크" ], "예약시간": [ "오후 6시 15분" ], "예약일": [ "다음 주 금요일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 그건 아니고 다음 주 금요일로 해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "트립티크" ], "slot": "식당명", "values": [ "트립티크" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-08" ], "slot": "예약일", "values": [ "3월 8일" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 7, "slot": "식당명", "start": 3 }, { "exclusive_end": 14, "slot": "예약일", "start": 9 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "네, 트립티크에 3월 8일로 테이블 예약을 완료해 드리겠습니다." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "한 명" ] }, { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "트립티크" ], "예약시간": [ "오후 6시 15분" ], "예약일": [ "다음 주 금요일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "한 명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 다시 정리하자면 한 명이에요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "2019-03-08" ], "slot": "예약일", "values": [ "3월 8일" ] }, { "act": "CONFIRM", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "1명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 5, "slot": "예약일", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "3월 8일 1명으로 예약이 완료되었습니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "채식옵션_유무", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "채식옵션_유무" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "트립티크" ], "예약시간": [ "오후 6시 15분" ], "예약일": [ "다음 주 금요일", "3월 8일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "한 명", "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그걸로 할게요, 채식 옵션도 있나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "True" ], "slot": "채식옵션_유무", "values": [ "True" ] }, { "act": "OFFER", "canonical_values": [ "트립티크" ], "slot": "식당명", "values": [ "트립티크" ] }, { "act": "OFFER", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "1명" ] }, { "act": "OFFER", "canonical_values": [ "2019-03-08" ], "slot": "예약일", "values": [ "3월 8일" ] }, { "act": "OFFER", "canonical_values": [ "18:00" ], "slot": "예약시간", "values": [ "오후 6시" ] }, { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "트립티크", "예약시간": "18:15", "예약일": "2019-03-08", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "1", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "트립티크", "앨범": null, "야외좌석_유무": "False", "예약시간": "18:00", "예약일": "2019-03-08", "위치": "샌프란시스코", "장르": null, "장소": null, "장치": null, "전화번호": "415-703-0557", "종류": "브런치", "좌석_수": "1", "주소": "1155 폴섬 스트리트", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "3.80", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 24, "slot": "식당명", "start": 20 }, { "exclusive_end": 60, "slot": "예약일", "start": 55 }, { "exclusive_end": 66, "slot": "예약시간", "start": 61 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 소식과 나쁜 소식이 있습니다만 트립티크에는 채식 옵션이 있으나 요청하신 시간에는 자리가 없어 3월 8일 오후 6시에 1명으로 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "트립티크" ], "예약시간": [ "오후 6시 15분" ], "예약일": [ "다음 주 금요일", "3월 8일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "한 명", "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 그건 안 되겠어요." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "불편을 끼쳐 드려 죄송하며 좋은 하루 보내시기 바랍니다." } ]
1_00007
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "13:30" ], "slot": "예약시간", "values": [ "오후 1시 30분" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오후 1시 30분" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오후 1시 30분에 식당 예약 좀 하려고 하는데요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "어느 식당에서 자리를 원하십니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "레프트 뱅크 라크스퍼 브라세리" ], "slot": "식당명", "values": [ "레프트 뱅크" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 6, "slot": "식당명", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "레프트 뱅크" ], "예약시간": [ "오후 1시 30분" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "레프트 뱅크에 자리 하나 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "원하시는 위치가 어디입니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "라크스퍼" ], "slot": "위치", "values": [ "라크스퍼" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 4, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "레프트 뱅크" ], "예약시간": [ "오후 1시 30분" ], "예약일": null, "위치": [ "라크스퍼" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "라크스퍼에 있는 식당으로 예약 좀 해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "레프트 뱅크 라크스퍼 브라세리" ], "slot": "식당명", "values": [ "레프트 뱅크 라크스퍼 브라세리" ] }, { "act": "CONFIRM", "canonical_values": [ "라크스퍼" ], "slot": "위치", "values": [ "라크스퍼" ] }, { "act": "CONFIRM", "canonical_values": [ "13:30" ], "slot": "예약시간", "values": [ "오후 1시 30분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 25, "slot": "식당명", "start": 9 }, { "exclusive_end": 4, "slot": "위치", "start": 0 }, { "exclusive_end": 42, "slot": "예약시간", "start": 33 }, { "exclusive_end": 32, "slot": "예약일", "start": 27 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "라크스퍼에 있는 레프트 뱅크 라크스퍼 브라세리를 3월 1일 오후 1시 30분에 2명으로 예약해 드려도 괜찮겠습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "레프트 뱅크", "레프트 뱅크 라크스퍼 브라세리" ], "예약시간": [ "오후 1시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "라크스퍼" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그 예약 괜찮아요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "레프트 뱅크 라크스퍼 브라세리", "예약시간": "13:30", "예약일": "2019-03-01", "위치": "라크스퍼", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "레프트 뱅크 라크스퍼 브라세리", "앨범": null, "야외좌석_유무": "True", "예약시간": "13:30", "예약일": "2019-03-01", "위치": "라크스퍼", "장르": null, "장소": null, "장치": null, "전화번호": "415-927-3034", "종류": "브라세리", "좌석_수": "2", "주소": "507 매그놀리아 애비뉴", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.30", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 정상적으로 완료되었음을 알려드립니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "레프트 뱅크", "레프트 뱅크 라크스퍼 브라세리" ], "예약시간": [ "오후 1시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "라크스퍼" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "도와주셔서 정말 고맙습니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 보내시기 바랍니다." } ]
1_00008
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "18:45" ], "slot": "예약시간", "values": [ "오후 6시 45분" ] }, { "act": "INFORM", "canonical_values": [ "2019-03-06" ], "slot": "예약일", "values": [ "다음 주 수요일" ] }, { "act": "INFORM", "canonical_values": [ "오클랜드" ], "slot": "위치", "values": [ "오클랜드" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 31, "slot": "예약시간", "start": 22 }, { "exclusive_end": 21, "slot": "예약일", "start": 13 }, { "exclusive_end": 4, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오후 6시 45분" ], "예약일": [ "다음 주 수요일" ], "위치": [ "오클랜드" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오클랜드에 있는 식당을 다음 주 수요일 오후 6시 45분으로 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 식당을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "맥도날드" ], "slot": "식당명", "values": [ "맥도날드" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "식당명", "start": 5 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "오후 6시 45분" ], "예약일": [ "다음 주 수요일" ], "위치": [ "오클랜드" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오클랜드 맥도날드에 다음 주 수요일 오후 6시 45분으로 자리 하나 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "맥도날드" ], "slot": "식당명", "values": [ "맥도날드" ] }, { "act": "CONFIRM", "canonical_values": [ "오클랜드" ], "slot": "위치", "values": [ "오클랜드" ] }, { "act": "CONFIRM", "canonical_values": [ "18:45" ], "slot": "예약시간", "values": [ "오후 6시 45분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-06" ], "slot": "예약일", "values": [ "3월 6일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 44, "slot": "식당명", "start": 40 }, { "exclusive_end": 39, "slot": "위치", "start": 35 }, { "exclusive_end": 33, "slot": "예약시간", "start": 24 }, { "exclusive_end": 23, "slot": "예약일", "start": 18 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "다음 내용을 확인해 주시겠습니까 3월 6일 오후 6시 45분에 오클랜드 맥도날드에서 2명, 테이블 1개로 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "가격_범위", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "야외좌석_유무", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "야외좌석_유무", "가격_범위" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "오후 6시 45분" ], "예약일": [ "다음 주 수요일", "3월 6일" ], "위치": [ "오클랜드" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 맞습니다. 이 식당 가격대는 어떻게 되며 야외 좌석도 있나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "저렴" ], "slot": "가격_범위", "values": [ "저렴" ] }, { "act": "INFORM", "canonical_values": [ "False" ], "slot": "야외좌석_유무", "values": [ "False" ] }, { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "맥도날드", "예약시간": "18:45", "예약일": "2019-03-06", "위치": "오클랜드", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "저렴", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "맥도날드", "앨범": null, "야외좌석_유무": "False", "예약시간": "18:30", "예약일": "2019-03-06", "위치": "오클랜드", "장르": null, "장소": null, "장치": null, "전화번호": "510-568-6471", "종류": "샌드위치", "좌석_수": "2", "주소": "6300 이스트 14번 스트리트", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "3.50", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 완료되었으며 이 식당은 저렴한 편이고 야외 좌석은 없습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "오후 6시 45분" ], "예약일": [ "다음 주 수요일", "3월 6일" ], "위치": [ "오클랜드" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "감사합니다, 수고 많으셨습니다." }, { "frames": [ { "actions": [ { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "더 도와드릴 사항이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "오후 6시 45분" ], "예약일": [ "다음 주 수요일", "3월 6일" ], "위치": [ "오클랜드" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 괜찮습니다. 도와주셔서 감사합니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 보내시기 바랍니다." } ]
1_00009
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "식당 예약하려고 하는데요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 식당 이름과 희망하시는 예약 시간을 알려주시기 바랍니다." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "라 하시엔다 멕시칸 레스토랑" ], "slot": "식당명", "values": [ "라 하시엔다" ] }, { "act": "INFORM", "canonical_values": [ "14:00" ], "slot": "예약시간", "values": [ "오후 2시" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 6, "slot": "식당명", "start": 0 }, { "exclusive_end": 13, "slot": "예약시간", "start": 8 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 하시엔다" ], "예약시간": [ "오후 2시" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "라 하시엔다에 오후 2시로 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "식당은 어디에 위치해 있는지 알려주시기 바랍니다." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "클로버데일" ], "slot": "위치", "values": [ "클로버데일" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 5, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 하시엔다" ], "예약시간": [ "오후 2시" ], "예약일": null, "위치": [ "클로버데일" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "클로버데일 쪽이에요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "라 하시엔다 멕시칸 레스토랑" ], "slot": "식당명", "values": [ "라 하시엔다 멕시칸 레스토랑" ] }, { "act": "CONFIRM", "canonical_values": [ "클로버데일" ], "slot": "위치", "values": [ "클로버데일" ] }, { "act": "CONFIRM", "canonical_values": [ "14:00" ], "slot": "예약시간", "values": [ "오후 2시" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 26, "slot": "식당명", "start": 11 }, { "exclusive_end": 5, "slot": "위치", "start": 0 }, { "exclusive_end": 39, "slot": "예약시간", "start": 34 }, { "exclusive_end": 33, "slot": "예약일", "start": 28 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "클로버데일에 위치한 라 하시엔다 멕시칸 레스토랑을 3월 1일 오후 2시에 2명으로 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "평점", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "평점" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 하시엔다", "라 하시엔다 멕시칸 레스토랑" ], "예약시간": [ "오후 2시" ], "예약일": [ "3월 1일" ], "위치": [ "클로버데일" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 좋아요. 그 식당 평점은 어느 정도인가요?" }, { "frames": [ { "actions": [ { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] }, { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "라 하시엔다 멕시칸 레스토랑", "예약시간": "14:00", "예약일": "2019-03-01", "위치": "클로버데일", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송합니다만 예약을 완료하지 못했습니다. 다른 도와드릴 사항이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 하시엔다", "라 하시엔다 멕시칸 레스토랑" ], "예약시간": [ "오후 2시" ], "예약일": [ "3월 1일" ], "위치": [ "클로버데일" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 괜찮습니다. 도와주셔서 감사합니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "천만에요, 좋은 하루 보내시기 바랍니다." } ]
1_00010
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "러스 로스 타이" ], "slot": "식당명", "values": [ "러스 로스" ] }, { "act": "INFORM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "INFORM", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "1명" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 32, "slot": "식당명", "start": 27 }, { "exclusive_end": 6, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "러스 로스" ], "예약시간": null, "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "샌프란시스코에서 1명 저녁 예약을 하려고 하는데 러스 로스에 테이블 하나 잡아주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약 시간을 몇 시로 잡아 드리면 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "12:15" ], "slot": "예약시간", "values": [ "오후 12시 15분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 10, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "러스 로스" ], "예약시간": [ "오후 12시 15분" ], "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오후 12시 15분으로 예약해 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "러스 로스 타이" ], "slot": "식당명", "values": [ "러스 로스 타이" ] }, { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "12:15" ], "slot": "예약시간", "values": [ "오후 12시 15분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "1명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 16, "slot": "식당명", "start": 8 }, { "exclusive_end": 6, "slot": "위치", "start": 0 }, { "exclusive_end": 34, "slot": "예약시간", "start": 24 }, { "exclusive_end": 23, "slot": "예약일", "start": 18 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "샌프란시스코의 러스 로스 타이에 3월 1일 오후 12시 15분, 1명으로 예약해 드려도 괜찮으십니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "러스 로스", "러스 로스 타이" ], "예약시간": [ "오후 12시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그렇게 해주시면 됩니다." }, { "frames": [ { "actions": [ { "act": "OFFER", "canonical_values": [ "러스 로스 타이" ], "slot": "식당명", "values": [ "러스 로스 타이" ] }, { "act": "OFFER", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "1명" ] }, { "act": "OFFER", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "OFFER", "canonical_values": [ "12:00" ], "slot": "예약시간", "values": [ "오후 12시" ] }, { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "러스 로스 타이", "예약시간": "12:15", "예약일": "2019-03-01", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "1", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "러스 로스 타이", "앨범": null, "야외좌석_유무": "False", "예약시간": "12:00", "예약일": "2019-03-01", "위치": "샌프란시스코", "장르": null, "장소": null, "장치": null, "전화번호": "415-874-9661", "종류": "태국식", "좌석_수": "1", "주소": "307 헤이즈 스트리트", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.20", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 36, "slot": "식당명", "start": 28 }, { "exclusive_end": 44, "slot": "예약일", "start": 39 }, { "exclusive_end": 51, "slot": "예약시간", "start": 45 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "해당 정보로는 예약을 진행할 수 없었습니다만 대신 러스 로스 타이에서 3월 1일 오후 12시에 1명으로 예약해 드려도 괜찮으십니까?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "러스 로스", "러스 로스 타이" ], "예약시간": [ "오후 12시 15분" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 그걸로 괜찮습니다, 감사합니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "천만에요. 남은 하루도 편안히 보내시기 바랍니다." } ]
1_00011
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "댄빌" ], "slot": "위치", "values": [ "댄빌" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 2, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": [ "댄빌" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "댄빌에 있는 식당에서 자리를 예약하고 싶어요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 특정 식당을 염두에 두고 계십니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "로터스 타이 레스토랑" ], "slot": "식당명", "values": [ "로터스" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "식당명", "start": 6 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "로터스" ], "예약시간": null, "예약일": null, "위치": [ "댄빌" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 사실 로터스에 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "몇 시로 예약해 드리면 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "11:45" ], "slot": "예약시간", "values": [ "11시 45분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 16, "slot": "예약시간", "start": 9 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "로터스" ], "예약시간": [ "11시 45분" ], "예약일": null, "위치": [ "댄빌" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "그럼 점심 전에 11시 45분으로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "로터스 타이 레스토랑" ], "slot": "식당명", "values": [ "로터스 타이 레스토랑" ] }, { "act": "CONFIRM", "canonical_values": [ "댄빌" ], "slot": "위치", "values": [ "댄빌" ] }, { "act": "CONFIRM", "canonical_values": [ "11:45" ], "slot": "예약시간", "values": [ "오전 11시 45분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 15, "slot": "식당명", "start": 4 }, { "exclusive_end": 2, "slot": "위치", "start": 0 }, { "exclusive_end": 33, "slot": "예약시간", "start": 23 }, { "exclusive_end": 22, "slot": "예약일", "start": 17 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "댄빌의 로터스 타이 레스토랑에 3월 1일 오전 11시 45분, 2명으로 예약을 원하시는지 확인해 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "로터스", "로터스 타이 레스토랑" ], "예약시간": [ "11시 45분", "오전 11시 45분" ], "예약일": [ "3월 1일" ], "위치": [ "댄빌" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 모두 맞아요." }, { "frames": [ { "actions": [ { "act": "OFFER", "canonical_values": [ "로터스 타이 레스토랑" ], "slot": "식당명", "values": [ "로터스 타이 레스토랑" ] }, { "act": "OFFER", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] }, { "act": "OFFER", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "OFFER", "canonical_values": [ "12:00" ], "slot": "예약시간", "values": [ "오후 12시" ] }, { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "로터스 타이 레스토랑", "예약시간": "11:45", "예약일": "2019-03-01", "위치": "댄빌", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "로터스 타이 레스토랑", "앨범": null, "야외좌석_유무": "False", "예약시간": "12:00", "예약일": "2019-03-01", "위치": "댄빌", "장르": null, "장소": null, "장치": null, "전화번호": "925-743-8424", "종류": "태국식", "좌석_수": "2", "주소": "115 하츠 애비뉴", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.50", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 47, "slot": "식당명", "start": 36 }, { "exclusive_end": 27, "slot": "예약일", "start": 22 }, { "exclusive_end": 34, "slot": "예약시간", "start": 28 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송합니다만 해당 예약은 불가하여 대신 3월 1일 오후 12시로 로터스 타이 레스토랑 2명 예약을 시도해 드려도 될까요?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "로터스", "로터스 타이 레스토랑" ], "예약시간": [ "오후 12시" ], "예약일": [ "3월 1일" ], "위치": [ "댄빌" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그렇게 해 주시면 감사하겠습니다." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "로터스 타이 레스토랑", "예약시간": "12:00", "예약일": "2019-03-01", "위치": "댄빌", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "로터스 타이 레스토랑", "앨범": null, "야외좌석_유무": "False", "예약시간": "12:00", "예약일": "2019-03-01", "위치": "댄빌", "장르": null, "장소": null, "장치": null, "전화번호": "925-743-8424", "종류": "태국식", "좌석_수": "2", "주소": "115 하츠 애비뉴", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.50", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 성공적으로 완료되었습니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [ "저렴" ], "slot": "가격_범위", "values": [ "싼" ] }, { "act": "REQUEST", "canonical_values": [], "slot": "주소", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "주소", "가격_범위" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "로터스", "로터스 타이 레스토랑" ], "예약시간": [ "오후 12시" ], "예약일": [ "3월 1일" ], "위치": [ "댄빌" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "거기 가격이 싼가요, 주소도 알려 주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "보통" ], "slot": "가격_범위", "values": [ "보통" ] }, { "act": "INFORM", "canonical_values": [ "115 하츠 애비뉴" ], "slot": "주소", "values": [ "115 하츠 애비뉴" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 31, "slot": "주소", "start": 21 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "가격대는 보통이라 그리 나쁘지 않으며 115 하츠 애비뉴에서 확인하실 수 있습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "로터스", "로터스 타이 레스토랑" ], "예약시간": [ "오후 12시" ], "예약일": [ "3월 1일" ], "위치": [ "댄빌" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 감사합니다. 일단은 이 정도면 될 것 같아요." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "맛있게 드시기 바랍니다." } ]
1_00012
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "2019-03-05" ], "slot": "예약일", "values": [ "다음 화요일" ] }, { "act": "INFORM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "INFORM", "canonical_values": [ "4" ], "slot": "좌석_수", "values": [ "4명" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 27, "slot": "예약일", "start": 21 }, { "exclusive_end": 35, "slot": "위치", "start": 29 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": [ "다음 화요일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "4명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "본사에서 오는 제 상사와 그분 부인을 다음 화요일에 샌프란시스코에서 저녁 대접하려고 하는데 4명이 앉을 수 있는 식당을 찾아주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "문제되지 않을 것입니다. 원하시는 특정 시간이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "18:30" ], "slot": "예약시간", "values": [ "오후 6시 30분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 23, "slot": "예약시간", "start": 14 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오후 6시 30분" ], "예약일": [ "다음 화요일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "4명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 저녁 시간 괜찮으니 오후 6시 30분으로 테이블 하나 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "알겠습니다만 장소는 어떻게 하실지 먼저 찾아볼 특정 식당이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "Aq" ], "slot": "식당명", "values": [ "Aq" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 5, "slot": "식당명", "start": 3 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "Aq" ], "예약시간": [ "오후 6시 30분" ], "예약일": [ "다음 화요일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "4명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, Aq이 아주 좋다고 들었으니 우선 그쪽으로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "Aq" ], "slot": "식당명", "values": [ "Aq" ] }, { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "18:30" ], "slot": "예약시간", "values": [ "오후 6시 30분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-05" ], "slot": "예약일", "values": [ "3월 5일" ] }, { "act": "CONFIRM", "canonical_values": [ "4" ], "slot": "좌석_수", "values": [ "4명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 47, "slot": "식당명", "start": 45 }, { "exclusive_end": 55, "slot": "위치", "start": 49 }, { "exclusive_end": 72, "slot": "예약시간", "start": 63 }, { "exclusive_end": 62, "slot": "예약일", "start": 57 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "문제 없습니다만 예약을 진행하기 전에 제가 가진 정보가 정확한지 확인하려 하오니 Aq, 샌프란시스코, 3월 5일 오후 6시 30분에 4명 자리로 예약을 원하시는 것이 맞습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "밍스 다이너" ], "slot": "식당명", "values": [ "밍스" ] }, { "act": "INFORM", "canonical_values": [ "3" ], "slot": "좌석_수", "values": [ "3명" ] }, { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 38, "slot": "식당명", "start": 36 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "밍스" ], "예약시간": [ "오후 6시 30분" ], "예약일": [ "다음 화요일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "3명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아, 죄송해요 깜빡했는데 그분이 아내분은 못 오신다고 해서 대신 밍스에 3명으로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "밍스 다이너" ], "slot": "식당명", "values": [ "밍스 다이너" ] }, { "act": "CONFIRM", "canonical_values": [ "3" ], "slot": "좌석_수", "values": [ "3인" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 13, "slot": "식당명", "start": 7 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "알겠습니다, 밍스 다이너에 3인 테이블로 변경해 두었는데 맞습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "평점", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "평점" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "밍스", "밍스 다이너" ], "예약시간": [ "오후 6시 30분" ], "예약일": [ "다음 화요일", "3월 5일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "3명", "3인" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "그 식당 평점도 알려주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "4.00" ], "slot": "평점", "values": [ "4.0" ] }, { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "밍스 다이너", "예약시간": "18:30", "예약일": "2019-03-05", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "3", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "저렴", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "밍스 다이너", "앨범": null, "야외좌석_유무": "False", "예약시간": "18:30", "예약일": "2019-03-05", "위치": "샌프란시스코", "장르": null, "장소": null, "장치": null, "전화번호": "415-242-0811", "종류": "중식", "좌석_수": "3", "주소": "2129 타라발 스트리트", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.00", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 18, "slot": "평점", "start": 15 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "확인해 드린 식당의 평점은 4.0입니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "밍스", "밍스 다이너" ], "예약시간": [ "오후 6시 30분" ], "예약일": [ "다음 화요일", "3월 5일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "3명", "3인" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그럼 이 정도면 될 것 같아요. 감사합니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "별말씀을요, 남은 하루도 평안하게 보내시기 바랍니다." } ]
1_00013
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "19:30" ], "slot": "예약시간", "values": [ "오후 7시 30분" ] }, { "act": "INFORM", "canonical_values": [ "페탈루마" ], "slot": "위치", "values": [ "페탈루마" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 23, "slot": "예약시간", "start": 14 }, { "exclusive_end": 4, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오후 7시 30분" ], "예약일": null, "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "페탈루마에서 호텔을 찾아 오후 7시 30분에 자리 예약을 하고 싶은데 도와주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "특별히 원하시는 식당이 있으신지요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "캐틀맨스" ], "slot": "식당명", "values": [ "캐틀맨스" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 7, "slot": "식당명", "start": 3 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "캐틀맨스" ], "예약시간": [ "오후 7시 30분" ], "예약일": null, "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 캐틀맨스에 예약 부탁드립니다." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "캐틀맨스" ], "slot": "식당명", "values": [ "캐틀맨스" ] }, { "act": "CONFIRM", "canonical_values": [ "페탈루마" ], "slot": "위치", "values": [ "페탈루마" ] }, { "act": "CONFIRM", "canonical_values": [ "19:30" ], "slot": "예약시간", "values": [ "오후 7시 30분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 36, "slot": "식당명", "start": 32 }, { "exclusive_end": 30, "slot": "위치", "start": 26 }, { "exclusive_end": 24, "slot": "예약시간", "start": 15 }, { "exclusive_end": 14, "slot": "예약일", "start": 9 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "확인하겠습니다, 3월 1일 오후 7시 30분에 페탈루마의 캐틀맨스에서 2명으로 예약해 드려도 될까요?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "캐틀맨스" ], "예약시간": [ "오후 7시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "좋습니다, 그걸로 됐습니다." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "캐틀맨스", "예약시간": "19:30", "예약일": "2019-03-01", "위치": "페탈루마", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "캐틀맨스", "앨범": null, "야외좌석_유무": "False", "예약시간": "19:30", "예약일": "2019-03-01", "위치": "페탈루마", "장르": null, "장소": null, "장치": null, "전화번호": "707-763-4114", "종류": "스테이크하우스", "좌석_수": "2", "주소": "5012 페탈루마 블러바드 노스", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.30", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 정상적으로 완료되었습니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "채식옵션_유무", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "주소", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "주소", "채식옵션_유무" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "캐틀맨스" ], "예약시간": [ "오후 7시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "그 식당은 채식 메뉴로 해 드릴까요, 전화번호는 어떻게 되나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "False" ], "slot": "채식옵션_유무", "values": [ "False" ] }, { "act": "INFORM", "canonical_values": [ "5012 페탈루마 블러바드 노스" ], "slot": "주소", "values": [ "5012 페탈루마 블러바드 노스" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 50, "slot": "주소", "start": 33 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송하지만 해당 식당은 채식 메뉴를 제공하지 않으며 주소는 5012 페탈루마 블러바드 노스입니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "캐틀맨스" ], "예약시간": [ "오후 7시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "서비스가 정말 훌륭했습니다, 감사합니다." }, { "frames": [ { "actions": [ { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "다른 도움이 더 필요하신가요?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "캐틀맨스" ], "예약시간": [ "오후 7시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 그걸로 됐습니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 보내시기 바랍니다." } ]
1_00014
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "타이 칠리 퀴진" ], "slot": "식당명", "values": [ "타이 칠리" ] }, { "act": "INFORM", "canonical_values": [ "2019-03-11" ], "slot": "예약일", "values": [ "3월 11일" ] }, { "act": "INFORM", "canonical_values": [ "산타클라라" ], "slot": "위치", "values": [ "타클라라에" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 5, "slot": "식당명", "start": 0 }, { "exclusive_end": 14, "slot": "예약일", "start": 8 }, { "exclusive_end": 45, "slot": "위치", "start": 40 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "타이 칠리" ], "예약시간": null, "예약일": [ "3월 11일" ], "위치": [ "타클라라에" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "타이 칠리에서 3월 11일에 테이블 예약을 도와주실 수 있을까요 그리고 타클라라에 있는 식당들도 찾아 주세요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "원하시는 예약 시간을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "17:45" ], "slot": "예약시간", "values": [ "오후 5시 45분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "타이 칠리" ], "예약시간": [ "오후 5시 45분" ], "예약일": [ "3월 11일" ], "위치": [ "타클라라에" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오후 5시 45분으로 예약해 주시겠어요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "타이 칠리 퀴진" ], "slot": "식당명", "values": [ "타이 칠리 퀴진" ] }, { "act": "CONFIRM", "canonical_values": [ "산타클라라" ], "slot": "위치", "values": [ "산타클라라" ] }, { "act": "CONFIRM", "canonical_values": [ "17:45" ], "slot": "예약시간", "values": [ "오후 5시 45분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-11" ], "slot": "예약일", "values": [ "3월 11일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 33, "slot": "식당명", "start": 25 }, { "exclusive_end": 23, "slot": "위치", "start": 18 }, { "exclusive_end": 16, "slot": "예약시간", "start": 7 }, { "exclusive_end": 6, "slot": "예약일", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "3월 11일 오후 5시 45분에 산타클라라의 타이 칠리 퀴진에 2명으로 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "타이 칠리", "타이 칠리 퀴진" ], "예약시간": [ "오후 5시 45분" ], "예약일": [ "3월 11일" ], "위치": [ "타클라라에", "산타클라라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그렇게 해 주세요." }, { "frames": [ { "actions": [ { "act": "OFFER", "canonical_values": [ "타이 칠리 퀴진" ], "slot": "식당명", "values": [ "타이 칠리 퀴진" ] }, { "act": "OFFER", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] }, { "act": "OFFER", "canonical_values": [ "2019-03-11" ], "slot": "예약일", "values": [ "3월 11일" ] }, { "act": "OFFER", "canonical_values": [ "18:00" ], "slot": "예약시간", "values": [ "오후 6시" ] }, { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "타이 칠리 퀴진", "예약시간": "17:45", "예약일": "2019-03-11", "위치": "산타클라라", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "타이 칠리 퀴진", "앨범": null, "야외좌석_유무": "False", "예약시간": "18:00", "예약일": "2019-03-11", "위치": "산타클라라", "장르": null, "장소": null, "장치": null, "전화번호": "408-615-9199", "종류": "태국식", "좌석_수": "2", "주소": "1550 핼퍼드 애비뉴", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.30", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 41, "slot": "식당명", "start": 33 }, { "exclusive_end": 25, "slot": "예약일", "start": 19 }, { "exclusive_end": 31, "slot": "예약시간", "start": 26 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송합니다만 예약을 완료하지 못해 3월 11일 오후 6시에 타이 칠리 퀴진에 2명으로 다시 예약해 드려도 될까요?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "타이 칠리", "타이 칠리 퀴진" ], "예약시간": [ "오후 6시" ], "예약일": [ "3월 11일" ], "위치": [ "타클라라에", "산타클라라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 괜찮으니 그렇게 해 주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "타이 칠리 퀴진", "예약시간": "18:00", "예약일": "2019-03-11", "위치": "산타클라라", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "타이 칠리 퀴진", "앨범": null, "야외좌석_유무": "False", "예약시간": "18:00", "예약일": "2019-03-11", "위치": "산타클라라", "장르": null, "장소": null, "장치": null, "전화번호": "408-615-9199", "종류": "태국식", "좌석_수": "2", "주소": "1550 핼퍼드 애비뉴", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.30", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 정상적으로 확정되었습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "타이 칠리", "타이 칠리 퀴진" ], "예약시간": [ "오후 6시" ], "예약일": [ "3월 11일" ], "위치": [ "타클라라에", "산타클라라" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "정말 감사드립니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "천만에요, 추가로 도와드릴 일이 있으시면 말씀해 주십시오." } ]
1_00015
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "식당 자리 예약 좀 도와주시겠어요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "물론입니다, 어디에서 찾아드릴까요 그리고 특정한 식당을 원하시는지요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "키안티 쿠치나" ], "slot": "식당명", "values": [ "키안티 쿠치나" ] }, { "act": "INFORM", "canonical_values": [ "노바토" ], "slot": "위치", "values": [ "노바토" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 15, "slot": "식당명", "start": 8 }, { "exclusive_end": 3, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "키안티 쿠치나" ], "예약시간": null, "예약일": null, "위치": [ "노바토" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "노바토에 있는 키안티 쿠치나는 어떨까요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "알겠습니다만 예약하실 시간을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "16:45" ], "slot": "예약시간", "values": [ "오후 4시 45분" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "키안티 쿠치나" ], "예약시간": [ "오후 4시 45분" ], "예약일": null, "위치": [ "노바토" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오후 4시 45분으로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "키안티 쿠치나" ], "slot": "식당명", "values": [ "키안티 쿠치나" ] }, { "act": "CONFIRM", "canonical_values": [ "노바토" ], "slot": "위치", "values": [ "노바토" ] }, { "act": "CONFIRM", "canonical_values": [ "16:45" ], "slot": "예약시간", "values": [ "오후 4시 45분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 15, "slot": "식당명", "start": 8 }, { "exclusive_end": 3, "slot": "위치", "start": 0 }, { "exclusive_end": 32, "slot": "예약시간", "start": 23 }, { "exclusive_end": 22, "slot": "예약일", "start": 17 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "노바토에 있는 키안티 쿠치나에 3월 1일 오후 4시 45분에 테이블 1개, 2명으로 예약해 드려도 괜찮으십니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "야외좌석_유무", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "종류", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "종류", "야외좌석_유무" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "키안티 쿠치나" ], "예약시간": [ "오후 4시 45분" ], "예약일": [ "3월 1일" ], "위치": [ "노바토" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네 좋아요, 예약해 주세요, 야외 좌석 있는지랑 뭐 파는지도 알려 주세요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "이탈리아 요리" ], "slot": "종류", "values": [ "이탈리아 요리" ] }, { "act": "INFORM", "canonical_values": [ "False" ], "slot": "야외좌석_유무", "values": [ "False" ] }, { "act": "OFFER", "canonical_values": [ "키안티 쿠치나" ], "slot": "식당명", "values": [ "키안티 쿠치나" ] }, { "act": "OFFER", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] }, { "act": "OFFER", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "OFFER", "canonical_values": [ "17:00" ], "slot": "예약시간", "values": [ "오후 5시" ] }, { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "키안티 쿠치나", "예약시간": "16:45", "예약일": "2019-03-01", "위치": "노바토", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "키안티 쿠치나", "앨범": null, "야외좌석_유무": "False", "예약시간": "17:00", "예약일": "2019-03-01", "위치": "노바토", "장르": null, "장소": null, "장치": null, "전화번호": "415-878-0314", "종류": "이탈리아 요리", "좌석_수": "2", "주소": "7416 레드우드 블러바드", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.50", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 16, "slot": "종류", "start": 9 }, { "exclusive_end": 57, "slot": "식당명", "start": 50 }, { "exclusive_end": 74, "slot": "예약일", "start": 69 }, { "exclusive_end": 80, "slot": "예약시간", "start": 75 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "해당 레스토랑은 이탈리아 요리를 제공하며 유감스럽게도 야외 좌석은 없고 말씀하신 시간에는 키안티 쿠치나 예약이 불가능하므로 3월 1일 오후 5시에 2명으로 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "키안티 쿠치나" ], "예약시간": [ "오후 5시" ], "예약일": [ "3월 1일" ], "위치": [ "노바토" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 그렇게 해 주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "키안티 쿠치나", "예약시간": "17:00", "예약일": "2019-03-01", "위치": "노바토", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "키안티 쿠치나", "앨범": null, "야외좌석_유무": "False", "예약시간": "17:00", "예약일": "2019-03-01", "위치": "노바토", "장르": null, "장소": null, "장치": null, "전화번호": "415-878-0314", "종류": "이탈리아 요리", "좌석_수": "2", "주소": "7416 레드우드 블러바드", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.50", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "귀하의 좌석 예약이 정상적으로 완료되었습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "키안티 쿠치나" ], "예약시간": [ "오후 5시" ], "예약일": [ "3월 1일" ], "위치": [ "노바토" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "정말 감사합니다. 그게 전부예요." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "별말씀을요, 좋은 하루 보내시기 바랍니다." } ]
1_00016
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "2019-03-10" ], "slot": "예약일", "values": [ "3월 10일" ] }, { "act": "INFORM", "canonical_values": [ "4" ], "slot": "좌석_수", "values": [ "4명 자리" ] }, { "act": "INFORM", "canonical_values": [ "페탈루마" ], "slot": "위치", "values": [ "페탈루마" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 6, "slot": "예약일", "start": 0 }, { "exclusive_end": 12, "slot": "위치", "start": 8 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": [ "3월 10일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "4명 자리" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "3월 10일에 페탈루마에서 4명 자리 예약하려고 해요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 식당과 희망하시는 시간을 알려주십시오." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "이자카야 키타루" ], "slot": "식당명", "values": [ "이자카야 키타루" ] }, { "act": "INFORM", "canonical_values": [ "17:30" ], "slot": "예약시간", "values": [ "17:30" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 8, "slot": "식당명", "start": 0 }, { "exclusive_end": 16, "slot": "예약시간", "start": 11 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "이자카야 키타루" ], "예약시간": [ "17:30" ], "예약일": [ "3월 10일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "4명 자리" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "이자카야 키타루에서 17:30에 예약하려고 하는데 가능할까요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "이자카야 키타루" ], "slot": "식당명", "values": [ "이자카야 키타루" ] }, { "act": "CONFIRM", "canonical_values": [ "페탈루마" ], "slot": "위치", "values": [ "페탈루마" ] }, { "act": "CONFIRM", "canonical_values": [ "17:30" ], "slot": "예약시간", "values": [ "오후 5시 30분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-10" ], "slot": "예약일", "values": [ "3월 10일" ] }, { "act": "CONFIRM", "canonical_values": [ "4" ], "slot": "좌석_수", "values": [ "4명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 35, "slot": "식당명", "start": 27 }, { "exclusive_end": 22, "slot": "위치", "start": 18 }, { "exclusive_end": 16, "slot": "예약시간", "start": 7 }, { "exclusive_end": 6, "slot": "예약일", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "3월 10일 오후 5시 30분에 페탈루마에 있는 이자카야 키타루에 4명으로 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "야외좌석_유무", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "야외좌석_유무" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "이자카야 키타루" ], "예약시간": [ "17:30", "오후 5시 30분" ], "예약일": [ "3월 10일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "4명 자리", "4명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 괜찮은데 야외 좌석도 있나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "False" ], "slot": "야외좌석_유무", "values": [ "False" ] }, { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "이자카야 키타루", "예약시간": "17:30", "예약일": "2019-03-10", "위치": "페탈루마", "장소": null, "장치": null, "좌석_수": "4", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "이자카야 키타루", "앨범": null, "야외좌석_유무": "False", "예약시간": "17:30", "예약일": "2019-03-10", "위치": "페탈루마", "장르": null, "장소": null, "장치": null, "전화번호": "707-789-9068", "종류": "일식", "좌석_수": "4", "주소": "212 웨스턴 애비뉴", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.60", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 완료되었습니다만 야외 좌석은 이용하실 수 없습니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "전화번호", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "주소", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "주소", "전화번호" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "이자카야 키타루" ], "예약시간": [ "17:30", "오후 5시 30분" ], "예약일": [ "3월 10일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "4명 자리", "4명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "전화번호랑 주소 좀 알려 주세요." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "707-789-9068" ], "slot": "전화번호", "values": [ "707-789-9068" ] }, { "act": "INFORM", "canonical_values": [ "212 웨스턴 애비뉴" ], "slot": "주소", "values": [ "212 웨스턴 애비뉴" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 18, "slot": "전화번호", "start": 6 }, { "exclusive_end": 36, "slot": "주소", "start": 25 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "전화번호는 707-789-9068이며 주소는 212 웨스턴 애비뉴입니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "이자카야 키타루" ], "예약시간": [ "17:30", "오후 5시 30분" ], "예약일": [ "3월 10일" ], "위치": [ "페탈루마" ], "장소": null, "장치": null, "좌석_수": [ "4명 자리", "4명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "도와주셔서 고마워요, 일단은 이 정도면 될 것 같아요." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 보내시기 바랍니다." } ]
1_00017
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "식당 예약 좀 해주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 장소와 시간을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "19:00" ], "slot": "예약시간", "values": [ "오후 7시" ] }, { "act": "INFORM", "canonical_values": [ "마운틴 뷰" ], "slot": "위치", "values": [ "마운틴 뷰" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 13, "slot": "예약시간", "start": 8 }, { "exclusive_end": 5, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오후 7시" ], "예약일": null, "위치": [ "마운틴 뷰" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "마운틴 뷰에서 오후 7시에 예약할 수 있는 식당 좀 찾아주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "선호하시는 식당의 이름을 알려주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "스시 85" ], "slot": "식당명", "values": [ "스시 85" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 5, "slot": "식당명", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "스시 85" ], "예약시간": [ "오후 7시" ], "예약일": null, "위치": [ "마운틴 뷰" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "스시 85로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "스시 85" ], "slot": "식당명", "values": [ "스시 85" ] }, { "act": "CONFIRM", "canonical_values": [ "마운틴 뷰" ], "slot": "위치", "values": [ "마운틴 뷰" ] }, { "act": "CONFIRM", "canonical_values": [ "19:00" ], "slot": "예약시간", "values": [ "오후 7시" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 28, "slot": "식당명", "start": 23 }, { "exclusive_end": 18, "slot": "위치", "start": 13 }, { "exclusive_end": 11, "slot": "예약시간", "start": 6 }, { "exclusive_end": 5, "slot": "예약일", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "3월 1일 오후 7시에 마운틴 뷰에 있는 스시 85에 2명 예약을 진행해 드려도 될지 확인해 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "주소", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "주소" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "스시 85" ], "예약시간": [ "오후 7시" ], "예약일": [ "3월 1일" ], "위치": [ "마운틴 뷰" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "좋아요. 그럼 주소 좀 알려 주세요." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "1350 그랜트 로드" ], "slot": "주소", "values": [ "1350 그랜트 로드" ] }, { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "스시 85", "예약시간": "19:00", "예약일": "2019-03-01", "위치": "마운틴 뷰", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "스시 85", "앨범": null, "야외좌석_유무": "False", "예약시간": "19:00", "예약일": "2019-03-01", "위치": "마운틴 뷰", "장르": null, "장소": null, "장치": null, "전화번호": "650-965-8898", "종류": "일식", "좌석_수": "2", "주소": "1350 그랜트 로드", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "3.80", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 31, "slot": "주소", "start": 20 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "예약을 성공적으로 완료했으며 주소는 1350 그랜트 로드입니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "전화번호", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "전화번호" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "스시 85" ], "예약시간": [ "오후 7시" ], "예약일": [ "3월 1일" ], "위치": [ "마운틴 뷰" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "전화번호 좀 찾아주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "650-965-8898" ], "slot": "전화번호", "values": [ "650-965-8898" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 12, "slot": "전화번호", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "650-965-8898로 전화해 주시기 바랍니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "스시 85" ], "예약시간": [ "오후 7시" ], "예약일": [ "3월 1일" ], "위치": [ "마운틴 뷰" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 도와주셔서 감사합니다!" }, { "frames": [ { "actions": [ { "act": "REQ_MORE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "다른 도와드릴 사항이 있으신가요?" }, { "frames": [ { "actions": [ { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] }, { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "NONE", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "스시 85" ], "예약시간": [ "오후 7시" ], "예약일": [ "3월 1일" ], "위치": [ "마운틴 뷰" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 그게 전부예요. 감사합니다!" }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "도움이 되어 기쁘게 생각하며 좋은 하루 보내시기 바랍니다." } ]
1_00018
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "19:00" ], "slot": "예약시간", "values": [ "오후 7시" ] }, { "act": "INFORM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 14, "slot": "예약시간", "start": 9 }, { "exclusive_end": 6, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "오후 7시" ], "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "샌프란시스코에서 오후 7시에 식당 자리 하나 예약하려고 해요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "어느 식당으로 좌석을 예약해 드릴까요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "리전트 타이" ], "slot": "식당명", "values": [ "리전트" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 3, "slot": "식당명", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리전트" ], "예약시간": [ "오후 7시" ], "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "리전트에 저녁 7시로 테이블 하나 예약해 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "리전트 타이" ], "slot": "식당명", "values": [ "리전트 타이" ] }, { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "19:00" ], "slot": "예약시간", "values": [ "오후 7시" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 26, "slot": "식당명", "start": 20 }, { "exclusive_end": 19, "slot": "위치", "start": 13 }, { "exclusive_end": 11, "slot": "예약시간", "start": 6 }, { "exclusive_end": 5, "slot": "예약일", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "3월 1일 오후 7시에 샌프란시스코 리전트 타이에서 2명으로 테이블을 예약해 드려도 되는지 다음 내용을 확인해 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리전트", "리전트 타이" ], "예약시간": [ "오후 7시" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 맞습니다." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "리전트 타이", "예약시간": "19:00", "예약일": "2019-03-01", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "저렴", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "리전트 타이", "앨범": null, "야외좌석_유무": "False", "예약시간": "18:30", "예약일": "2019-03-01", "위치": "샌프란시스코", "장르": null, "장소": null, "장치": null, "전화번호": "415-643-5893", "종류": "태국식", "좌석_수": "2", "주소": "1700 처치 스트리트", "채식옵션_유무": "True", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.30", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "고객님의 예약이 확정되었습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "리전트", "리전트 타이" ], "예약시간": [ "오후 7시" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "감사합니다. 그게 전부예요." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 보내시기 바랍니다." } ]
1_00019
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": null, "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "식당 예약 좀 하려고 하는데요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 특정 식당이 있으십니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "아말피" ], "slot": "식당명", "values": [ "아말피" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 3, "slot": "식당명", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "아말피" ], "예약시간": null, "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아말피로 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "예약시간", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "식당은 어디에 위치해 있으며 예약을 원하시는 시간은 언제입니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "17:30" ], "slot": "예약시간", "values": [ "오후 5시 30분" ] }, { "act": "INFORM", "canonical_values": [ "라크스퍼" ], "slot": "위치", "values": [ "라크스퍼" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약시간", "start": 0 }, { "exclusive_end": 15, "slot": "위치", "start": 11 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "아말피" ], "예약시간": [ "오후 5시 30분" ], "예약일": null, "위치": [ "라크스퍼" ], "장소": null, "장치": null, "좌석_수": null, "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "오후 5시 30분에 라크스퍼에서 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "아말피" ], "slot": "식당명", "values": [ "아말피" ] }, { "act": "CONFIRM", "canonical_values": [ "라크스퍼" ], "slot": "위치", "values": [ "라크스퍼" ] }, { "act": "CONFIRM", "canonical_values": [ "17:30" ], "slot": "예약시간", "values": [ "오후 5시 30분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 12, "slot": "식당명", "start": 9 }, { "exclusive_end": 4, "slot": "위치", "start": 0 }, { "exclusive_end": 29, "slot": "예약시간", "start": 20 }, { "exclusive_end": 19, "slot": "예약일", "start": 14 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "라크스퍼에 있는 아말피를 3월 1일 오후 5시 30분에 2명으로 예약해 드려도 괜찮으십니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "아말피" ], "예약시간": [ "오후 5시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "라크스퍼" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "네, 좋아요, 그렇게 예약해 주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "아말피", "예약시간": "17:30", "예약일": "2019-03-01", "위치": "라크스퍼", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "아말피", "앨범": null, "야외좌석_유무": "False", "예약시간": "17:30", "예약일": "2019-03-01", "위치": "라크스퍼", "장르": null, "장소": null, "장치": null, "전화번호": "415-924-3332", "종류": "이탈리아 요리", "좌석_수": "2", "주소": "455 매그놀리아 애비뉴", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "3.50", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약을 완료했습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "아말피" ], "예약시간": [ "오후 5시 30분" ], "예약일": [ "3월 1일" ], "위치": [ "라크스퍼" ], "장소": null, "장치": null, "좌석_수": [ "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "정말 감사해요, 일단은 이걸로 충분해요." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "오늘 남은 시간도 잘 보내시기 바랍니다." } ]
1_00020
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "18:30" ], "slot": "예약시간", "values": [ "저녁 6시 30분" ] }, { "act": "INFORM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명 자리" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 9, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": null, "예약시간": [ "저녁 6시 30분" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": [ "2명 자리" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "저녁 6시 30분에 2명 자리로 식당 예약 좀 도와주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "식당명", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약하실 식당이 있으십니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "맥도날드" ], "slot": "식당명", "values": [ "맥도날드" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 22, "slot": "식당명", "start": 18 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "저녁 6시 30분" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": [ "2명 자리" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "저녁 6시 30분에 2명 자리로 맥도날드 예약 좀 도와주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "검색해 드릴 장소를 알려 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "2019-03-04" ], "slot": "예약일", "values": [ "다음 월요일" ] }, { "act": "INFORM", "canonical_values": [ "모건 힐" ], "slot": "위치", "values": [ "모건 힐" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 13, "slot": "예약일", "start": 7 }, { "exclusive_end": 4, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "저녁 6시 30분" ], "예약일": [ "다음 월요일" ], "위치": [ "모건 힐" ], "장소": null, "장치": null, "좌석_수": [ "2명 자리" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "모건 힐에서 다음 월요일에 예약할 식당 좀 찾아 주실 수 있나요?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "맥도날드" ], "slot": "식당명", "values": [ "맥도날드" ] }, { "act": "CONFIRM", "canonical_values": [ "모건 힐" ], "slot": "위치", "values": [ "모건 힐" ] }, { "act": "CONFIRM", "canonical_values": [ "18:30" ], "slot": "예약시간", "values": [ "오후 6시 30분" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-04" ], "slot": "예약일", "values": [ "3월 4일" ] }, { "act": "CONFIRM", "canonical_values": [ "2" ], "slot": "좌석_수", "values": [ "2명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 24, "slot": "식당명", "start": 20 }, { "exclusive_end": 29, "slot": "위치", "start": 25 }, { "exclusive_end": 49, "slot": "예약시간", "start": 40 }, { "exclusive_end": 39, "slot": "예약일", "start": 34 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "예약 내용을 확인해 드리겠습니다만, 맥도날드 모건 힐 지점에 3월 4일 오후 6시 30분에 2명으로 예약되어 있으니 확인해 주시기 바랍니다." }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "저녁 6시 30분", "오후 6시 30분" ], "예약일": [ "다음 월요일", "3월 4일" ], "위치": [ "모건 힐" ], "장소": null, "장치": null, "좌석_수": [ "2명 자리", "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "좋아요, 참 멋지네요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "맥도날드", "예약시간": "18:30", "예약일": "2019-03-04", "위치": "모건 힐", "장소": null, "장치": null, "좌석_수": "2", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "저렴", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "맥도날드", "앨범": null, "야외좌석_유무": "False", "예약시간": "18:30", "예약일": "2019-03-04", "위치": "모건 힐", "장르": null, "장소": null, "장치": null, "전화번호": "408-779-8182", "종류": "미국식", "좌석_수": "2", "주소": "201 빈야드 타운 센터", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "3.40", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "고객님의 예약이 확인되었습니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "야외좌석_유무", "values": [] }, { "act": "REQUEST", "canonical_values": [], "slot": "전화번호", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "야외좌석_유무", "전화번호" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "저녁 6시 30분", "오후 6시 30분" ], "예약일": [ "다음 월요일", "3월 4일" ], "위치": [ "모건 힐" ], "장소": null, "장치": null, "좌석_수": [ "2명 자리", "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "그 식당에 야외 좌석이 있나요, 전화번호도 알려 주실 수 있을까요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "408-779-8182" ], "slot": "전화번호", "values": [ "408-779-8182" ] }, { "act": "INFORM", "canonical_values": [ "False" ], "slot": "야외좌석_유무", "values": [ "False" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 36, "slot": "전화번호", "start": 24 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "해당 매장은 야외 좌석이 없으며 전화번호는 408-779-8182입니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "맥도날드" ], "예약시간": [ "저녁 6시 30분", "오후 6시 30분" ], "예약일": [ "다음 월요일", "3월 4일" ], "위치": [ "모건 힐" ], "장소": null, "장치": null, "좌석_수": [ "2명 자리", "2명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "멋지네요, 정말 고맙습니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 보내시기 바랍니다." } ]
1_00021
[ "식당_2" ]
[ { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "라 브리치올라" ], "slot": "식당명", "values": [ "라 브리치올라" ] }, { "act": "INFORM", "canonical_values": [ "11:00" ], "slot": "예약시간", "values": [ "내일 오전 11시" ] }, { "act": "INFORM", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "1명" ] }, { "act": "INFORM_INTENT", "canonical_values": [ "ReserveRestaurant" ], "slot": "intent", "values": [ "ReserveRestaurant" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 18, "slot": "식당명", "start": 11 }, { "exclusive_end": 9, "slot": "예약시간", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 브리치올라" ], "예약시간": [ "내일 오전 11시" ], "예약일": null, "위치": null, "장소": null, "장치": null, "좌석_수": [ "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "내일 오전 11시에 라 브리치올라에서 1명 예약하고 싶습니다." }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "위치", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "검색할 도시를 알려주십시오." }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 6, "slot": "위치", "start": 0 } ], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 브리치올라" ], "예약시간": [ "내일 오전 11시" ], "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "1명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "샌프란시스코에서 검색해 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "라 브리치올라" ], "slot": "식당명", "values": [ "라 브리치올라" ] }, { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "11:00" ], "slot": "예약시간", "values": [ "오전 11시" ] }, { "act": "CONFIRM", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "CONFIRM", "canonical_values": [ "1" ], "slot": "좌석_수", "values": [ "1명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 18, "slot": "식당명", "start": 11 }, { "exclusive_end": 6, "slot": "위치", "start": 0 }, { "exclusive_end": 32, "slot": "예약시간", "start": 26 }, { "exclusive_end": 25, "slot": "예약일", "start": 20 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "샌프란시스코에 있는 라 브리치올라에 3월 1일 오전 11시에 1명으로 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "3" ], "slot": "좌석_수", "values": [ "3명" ] }, { "act": "NEGATE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 브리치올라" ], "예약시간": [ "내일 오전 11시" ], "예약일": null, "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "3명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "아니요, 인원은 3명으로 변경해 주세요." }, { "frames": [ { "actions": [ { "act": "CONFIRM", "canonical_values": [ "샌프란시스코" ], "slot": "위치", "values": [ "샌프란시스코" ] }, { "act": "CONFIRM", "canonical_values": [ "3" ], "slot": "좌석_수", "values": [ "3명" ] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [ { "exclusive_end": 6, "slot": "위치", "start": 0 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "샌프란시스코에서 3명으로 예약을 원하시는 것이 맞는지 확인해 주시겠습니까?" }, { "frames": [ { "actions": [ { "act": "REQUEST", "canonical_values": [], "slot": "종류", "values": [] }, { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [ "종류" ], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 브리치올라" ], "예약시간": [ "내일 오전 11시", "오전 11시" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "3명" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "좋습니다. 거기서는 주로 어떤 음식을 제공하나요?" }, { "frames": [ { "actions": [ { "act": "INFORM", "canonical_values": [ "이탈리아 요리" ], "slot": "종류", "values": [ "이탈리아 요리" ] }, { "act": "OFFER", "canonical_values": [ "라 브리치올라" ], "slot": "식당명", "values": [ "라 브리치올라" ] }, { "act": "OFFER", "canonical_values": [ "3" ], "slot": "좌석_수", "values": [ "3인" ] }, { "act": "OFFER", "canonical_values": [ "2019-03-01" ], "slot": "예약일", "values": [ "3월 1일" ] }, { "act": "OFFER", "canonical_values": [ "11:30" ], "slot": "예약시간", "values": [ "오전 11:30" ] }, { "act": "NOTIFY_FAILURE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "라 브리치올라", "예약시간": "11:00", "예약일": "2019-03-01", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "3", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "라 브리치올라", "앨범": null, "야외좌석_유무": "False", "예약시간": "11:30", "예약일": "2019-03-01", "위치": "샌프란시스코", "장르": null, "장소": null, "장치": null, "전화번호": "415-512-0300", "종류": "이탈리아 요리", "좌석_수": "3", "주소": "489 3번 스트리트", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.20", "흡연허용_유무": null } ], "slots": [ { "exclusive_end": 22, "slot": "종류", "start": 15 }, { "exclusive_end": 55, "slot": "식당명", "start": 48 }, { "exclusive_end": 68, "slot": "예약일", "start": 63 }, { "exclusive_end": 77, "slot": "예약시간", "start": 69 } ], "state": null } ], "speaker": "SYSTEM", "utterance": "죄송합니다만 이 레스토랑은 이탈리아 요리를 제공하며 요청하신 시간에는 예약이 불가하여 라 브리치올라에서 3인으로 3월 1일 오전 11:30에 예약해 드려도 되겠습니까?" }, { "frames": [ { "actions": [ { "act": "AFFIRM", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 브리치올라" ], "예약시간": [ "오전 11:30" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "3명", "3인" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "좋습니다, 그렇게 진행해 주세요." }, { "frames": [ { "actions": [ { "act": "NOTIFY_SUCCESS", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": { "method": "ReserveRestaurant", "parameters": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "라 브리치올라", "예약시간": "11:30", "예약일": "2019-03-01", "위치": "샌프란시스코", "장소": null, "장치": null, "좌석_수": "3", "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } }, "service_results": [ { "1박_요금": null, "가격_범위": "보통", "가수": null, "객실_수": null, "도로명주소": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": "라 브리치올라", "앨범": null, "야외좌석_유무": "False", "예약시간": "11:30", "예약일": "2019-03-01", "위치": "샌프란시스코", "장르": null, "장소": null, "장치": null, "전화번호": "415-512-0300", "종류": "이탈리아 요리", "좌석_수": "3", "주소": "489 3번 스트리트", "채식옵션_유무": "False", "체크인_날짜": null, "출시연도": null, "트랙": null, "평점": "4.20", "흡연허용_유무": null } ], "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "예약이 성공적으로 완료되었습니다." }, { "frames": [ { "actions": [ { "act": "THANK_YOU", "canonical_values": [], "slot": "", "values": [] }, { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": { "active_intent": "ReserveRestaurant", "requested_slots": [], "slot_values": { "가수": null, "객실_수": null, "등급": null, "숙박기간": null, "숙소명": null, "식당명": [ "라 브리치올라" ], "예약시간": [ "오전 11:30" ], "예약일": [ "3월 1일" ], "위치": [ "샌프란시스코" ], "장소": null, "장치": null, "좌석_수": [ "3명", "3인" ], "체크인_날짜": null, "출시연도": null, "트랙": null, "흡연허용_유무": null } } } ], "speaker": "USER", "utterance": "감사합니다. 이걸로 충분합니다." }, { "frames": [ { "actions": [ { "act": "GOODBYE", "canonical_values": [], "slot": "", "values": [] } ], "service": "식당_2", "service_call": null, "service_results": null, "slots": [], "state": null } ], "speaker": "SYSTEM", "utterance": "좋은 하루 되시기 바랍니다." } ]
End of preview.

KoSGD: Korean Schema-Guided Dialogue Dataset

KoSGD는 Google Research의 Schema-Guided Dialogue(SGD) 데이터셋을 한국어로 변환한 대규모 Task-Oriented Dialogue(ToD) 데이터셋입니다.

기존의 목적 지향 대화(ToD) 데이터셋은 고정된 도메인 내에서만 작동하는 경우가 많았습니다. Google의 SGD 데이터셋은 'Schema-Guided' 방식을 도입하여, 새로운 서비스 스키마만 주어지면 모델이 Zero-shot으로 대응할 수 있도록 설계되었습니다.

KoSGD는 왜 만들어졌나요?

  • 한국어 일반화 성능 평가: 한국어 LLM이 다양한 도메인(21개 이상)에서 스키마를 얼마나 정확히 이해하고 태스크를 수행하는지 측정하기 위함입니다.
  • 고도화된 번역 및 검수: 기계 번역 후 전문 인력이 전수 휴먼 검수를 진행하여, 구어체 표현의 자연스러움과 ToD 특유의 논리적 연결성을 확보했습니다.
  • 원본 오류 수정: 번역 과정에서 발견된 원본 SGD의 어노테이션 불일치와 오류를 대폭 수정하여 데이터 품질을 높였습니다.

Dataset Overview

KoSGD는 한국어 LLM이 다중 도메인(21개 이상) 환경에서 얼마나 유연하게 대화 상태를 추적하고 적절한 응답을 생성하는지 종합적으로 평가하기 위해 설계되었습니다. 단순 번역을 넘어선 전수 검수를 통해 고품질의 한국어 대화 데이터를 제공합니다.

Key Description
Dataset Name KoSGD (Korean Schema-Guided Dialogue)
Data Type 다중 도메인 목적 지향 대화 (ToD) 데이터셋
Domains 21개 서비스 (알람, 호텔, 식당, 항공, 날씨 등)
Size 총 84,594 턴 (Test set 기준)
Methodology 기계 번역 + 전문 검수 인력 전수 교정
Improvements 원본 어노테이션 오류 수정 및 한국어 정규화 값(Canonical Value) 최적화
License CC BY-SA 4.0

Key Concepts

Canonical Value vs Value

용어 정의 예시
Value 사용자 발화에서 원문 그대로 추출한 값 "8일", "오후 12시"
Canonical Value 슬롯에 대해 사전 정의된 정규화 값 "2019-03-08", "12:00"

Benchmark Evaluation

본 벤치마크 평가는 실시간 응답이 가능한 Local 및 API 모델을 대상으로 수행하였습니다. 수치 해석의 참고를 위해 일부 대형모델 (GPT5, Gemini 3 Pro 등)도 함께 포함하였습니다.

open source 모델 (8B~20B 규모 비추론 모델, 추론 모델일 경우 비추론 모드 설정)

temperature: 0.7 | top_p: 0.8 | top_k: 20 | min_p: 0 | max_tokens: 4096

proprietary 모델: 모델명만 지정, 그 외 파라미터는 API 기본값 사용 (접속일자: 2025/12/26)

KoSGD Dataset

Type Model Intent Cls. Action Cls. Val|Inform* I-A Harm Mean**
open source meta-llama/Meta-Llama-3.1-8B-Instruct 54.4 46.2 57.0 50.0
open source microsoft/phi-4 76.6 72.2 87.5 78.3
open source google/gemma-3-12b-it 62.6 64.0 75.6 66.9
open source Qwen/Qwen3-14B 75.4 71.7 82.1 76.2
- aiworkx/nlu-14B (Ours) 90.9 97.7 94.1 94.2
proprietary OpenAI/GPT-5-nano 77.5 70.7 92.2 79.2
proprietary OpenAI/GPT-5-mini 83.3 77.2 96.6 85.0
proprietary OpenAI/GPT-5 84.1 81.2 99.1 87.5
proprietary OpenAI/GPT-5.1 82.7 71.5 98.3 82.8
proprietary Google/gemini-3-flash-preview 79.1 76.0 99.1 83.6
proprietary Google/gemini-3-pro-preview 86.4 66.5 99.2 81.8
- Val|Inform*: 모델이 `action`을 `INFORM`으로 예측한 경우에 한하여, `values`까지 정확하게 예측했는지 평가; 조건부 정확도이므로, Action 성능이 낮은 경우 높은 Value Accuracy가 전체 추출 성능을 대표하지 않을 수 있음.
- I-A Harm Mean**: Intent, Action 정확도에 대한 조화평균.
Intent Classification

평가는 예측된(Predicted) 리스트와 정답(Ground Truth) 리스트 간의 요소별 매칭을 통해 이루어집니다. 순서와 관계없이 비교합니다.

Intent Accuracy

  • 정의: 모델이 intent 배열을 정확하게 예측했는지 평가
  • 조건: 예측된 intent 목록이 정답 리스트와 모두 일치할 경우 정답. 정답 리스트에 없는 intent가 포함되면 오답.
Action-Value Extraction

평가는 예측된(Predicted) 리스트와 정답(Ground Truth) 리스트 간의 요소별 매칭을 통해 이루어집니다. 순서와 관계없이 비교합니다.

A. Action Accuracy

  • 정의: 모델이 actslot 쌍을 정확하게 예측했는지 평가
  • 조건: 예측된 (act, slot) 쌍이 정답 리스트에 존재하면 정답

B. Value Accuracy (Val|Inform)

  • 정의: 모델이 actINFORM으로 예측한 경우에 한하여, values까지 정확하게 예측했는지 평가
  • 수식: P(Value Correct | Predicted Action = INFORM)
  • 조건:
    1. 모델이 actINFORM으로 예측
    2. 예측된 values 리스트의 구성 요소가 정답과 일치
  • 해석: 조건부 정확도이므로, Action 성능이 낮은 경우 높은 Value Accuracy가 전체 추출 성능을 대표하지 않을 수 있음
  • Note: 전체 INFORM 샘플에 대한 Value Extraction 성능은 정리 후 공개 예정

aiworkx/FIN-NLU-200K

Type Model Intent Cls. Action Cls. Val|Inform* I-A Harm Mean**
open source meta-llama/Meta-Llama-3.1-8B-Instruct 67.4 40.5 25.9 50.6
open source microsoft/phi-4 78.7 73.2 57.9 75.9
open source google/gemma-3-12b-it 53.4 63.2 42.4 57.9
open source Qwen/Qwen3-14B 85.3 79.5 59.5 82.3
- aiworkx/nlu-14B (Ours) 98.7 91.5 86.2 95.0
proprietary OpenAI/GPT-5-nano 95.3 82.7 77.4 88.6
proprietary OpenAI/GPT-5-mini 96.3 85.4 86.8 90.5
proprietary OpenAI/GPT-5 83.4 86.0 93.7 84.7
proprietary OpenAI/GPT-5.1 90.5 88.9 84.8 89.7
proprietary Google/gemini-3-flash-preview 95.8 88.2 92.8 91.8
proprietary Google/gemini-3-pro-preview 86.6 86.1 95.0 86.3
- Val|Inform*: 모델이 `action`을 `INFORM`으로 예측한 경우에 한하여, `values`까지 정확하게 예측했는지 평가; 조건부 정확도이므로, Action 성능이 낮은 경우 높은 Value Accuracy가 전체 추출 성능을 대표하지 않을 수 있음.
- I-A Harm Mean**: Intent, Action 정확도에 대한 조화평균.
aiworkx/FIN-NLU-200K

aiworkx/FIN-NLU-200K는 TOD 기반 금융 상담 에이전트의 NLU 모듈 성능 평가를 위해 AIWORKX에서 자체 설계/구축한 약 200K 규모의 금융권 의도 분류 학습/평가 데이터셋입니다. 본 레포지토리에서는 데이터셋 원문은 공개하지 않으며, 평가 결과 수치만 공유합니다.

평가 목표

  • 금융 상담 맥락에서 사용자 의도의 정확한 이해
  • 에이전트의 다음 행동 결정을 위한 발화 구분 능력
  • 한국어 구어체/모호적 표현에서의 정규화된 값 추출 능력

데이터 구조: 실제 상담 흐름을 반영한 1-turn 대화 구조

  • 상담사 발화 (agent utterance)
  • 고객 발화 (user utterance)
  • ontology (분류 및 추출 규칙 상세 및 Intent/Action/Value)

Dataset Details

Service (Domain) List
서비스 원본 SGD 설명
알람_1 Alarm_1 알람을 쉽게 가져오고 설정 및 관리
버스_3 Buses_3 저렴하고 편안한 전국 버스 여행
이벤트_3 Events_3 지역 문화 행사 티켓 검색 및 예약
비행_4 Flights_4 저렴한 항공편 검색 및 예약
집_2 Homes_2 구매 및 임대할 부동산 검색 서비스
호텔_2 Hotels_2 단기 체류를 위한 숙소 검색 및 예약
호텔_4 Hotels_4 숙박 검색 및 예약 포털
미디어_3 Media_3 드라마, 영화, 다큐멘터리 등 무제한 스트리밍
메세지_1 Messaging_1 연락처와 연결 및 위치 공유
영화_1 Movies_1 영화 검색, 상영 시간 확인, 티켓 예약
영화_3 Movies_3 영화 및 TV 리뷰 집계
음악_3 Music_3 맞춤형 무료 음악 스트리밍 플랫폼
결제_1 Payment_1 앱, 웹, 스토어에서 빠르고 간편한 결제
차량렌트_3 RentalCars_3 글로벌 렌터카 솔루션
식당_2 Restaurants_2 레스토랑 검색 및 예약 서비스
승차공유_2 RideSharing_2 목적지까지 택시 예약
서비스_1 Services_1 헤어 스타일리스트 검색 및 예약
서비스_4 Services_4 심리상담사 검색 및 예약
열차_1 Trains_1 도시 간 기차 여행 검색 및 예약
여행_1 Travel_1 관광 명소와 관심 지점 데이터베이스
날씨_1 Weather_1 특정 장소와 날짜에 대한 날씨 확인
Data Structure

파일 구성

KoSGD/
├── dialogues_001.json ~ dialogues_034.json   # 대화 데이터 (34개)
└── extended_schema.json                       # 서비스 스키마 정의

대화 데이터 구조

{
  "dialogue_id": "1_00000",
  "services": ["식당_2"],
  "turns": [
    {
      "speaker": "USER",
      "utterance": "안녕하세요. 8일에 식당 예약 좀 부탁드려도 될까요?",
      "frames": [{
        "service": "식당_2",
        "actions": [{
          "act": "INFORM",
          "slot": "예약일",
          "values": ["8일"],
          "canonical_values": ["2019-03-08"]
        }],
        "slots": [{"slot": "예약일", "start": 7, "exclusive_end": 9}],
        "state": {
          "active_intent": "ReserveRestaurant",
          "requested_slots": [],
          "slot_values": {"예약일": ["8일"]}
        }
      }]
    }
  ]
}

Action 유형

Act 설명 사용 주체
INFORM 슬롯 값 제공 USER, SYSTEM
INFORM_INTENT 의도 표현 USER
REQUEST 슬롯 값 요청 USER, SYSTEM
CONFIRM 값 확인 요청 SYSTEM
AFFIRM / NEGATE 긍정/부정 응답 USER
SELECT 선택지에서 선택 USER
OFFER 옵션 제안 SYSTEM
NOTIFY_SUCCESS / NOTIFY_FAILURE 작업 성공/실패 알림 SYSTEM
REQ_MORE 추가 요청 확인 SYSTEM
GOODBYE / THANK_YOU 대화 종료/감사 USER, SYSTEM

스키마 정의 구조

{
  "service_name": "알람_1",
  "description": "알람을 쉽게 가져오고 설정 및 관리",
  "slots": [{
    "name": "알람_시간",
    "description": "알람이 설정된 시간",
    "is_categorical": false,
    "possible_values": ["06:00", "06:30", ...]
  }],
  "intents": [{
    "name": "AddAlarm",
    "description": "새 알람 설정하기",
    "is_transactional": true,
    "required_slots": ["새_알람_시간"],
    "optional_slots": {"새_알람_이름": "새 알람"},
    "result_slots": ["새_알람_시간", "새_알람_이름"]
  }]
}

기존 SGD 데이터셋과 다르게, extended_schema파일에서 is_categorical의 값이 false인 경우에도 Action에서 사용하는 Canonical Values를 수집해서 제공합니다.


Citation

Original SGD Dataset (Google Research)

@inproceedings{rastogi2020towards,
  title={Towards scalable multi-domain conversational agents: The schema-guided dialogue dataset},
  author={Rastogi, Abhinav and Zang, Xiaoxue and Sunkara, Srinivas and Gupta, Raghav and Khaitan, Pranav},
  booktitle={Proceedings of the AAAI conference on artificial intelligence},
  volume={34},
  number={05},
  pages={8689--8696},
  year={2020}
}

KoSGD Dataset (AIWORKX)

@misc{AIWORKX_KOSGD,
  author = {AIWORKX},
  title = {KoSGD: Korean Schema-Guided Dialogue ToD Dataset},
  year = {2026},
  publisher = {Hugging Face},
  url = {https://huggingface.co/datasets/AIWORKX/KoSGD},
}

Additional Notes

  • Train 데이터셋은 추후 공개 예정입니다.
Downloads last month
3