google-research

Форк
0
110 строк · 2.7 Кб
1
[
2
  {
3
    "service_name": "Homes_1",
4
    "description": "A widely used service for finding apartments and scheduling visits",
5
    "slots": [
6
      {
7
        "name": "area",
8
        "description": "City where the apartment is located",
9
        "is_categorical": false,
10
        "possible_values": []
11
      },
12
      {
13
        "name": "address",
14
        "description": "Address of the apartment",
15
        "is_categorical": false,
16
        "possible_values": []
17
      },
18
      {
19
        "name": "property_name",
20
        "description": "Name of the apartment",
21
        "is_categorical": false,
22
        "possible_values": []
23
      },
24
      {
25
        "name": "phone_number",
26
        "description": "Phone number of the apartment",
27
        "is_categorical": false,
28
        "possible_values": []
29
      },
30
      {
31
        "name": "furnished",
32
        "description": "Boolean flag indicating if the property is furnished",
33
        "is_categorical": true,
34
        "possible_values": [
35
          "True",
36
          "False"
37
        ]
38
      },
39
      {
40
        "name": "pets_allowed",
41
        "description": "Boolean flag indicating if pets are allowed",
42
        "is_categorical": true,
43
        "possible_values": [
44
          "True",
45
          "False"
46
        ]
47
      },
48
      {
49
        "name": "rent",
50
        "description": "Rent per month of the apartment",
51
        "is_categorical": false,
52
        "possible_values": []
53
      },
54
      {
55
        "name": "visit_date",
56
        "description": "Date for the visit to the apartment",
57
        "is_categorical": false,
58
        "possible_values": []
59
      },
60
      {
61
        "name": "number_of_beds",
62
        "description": "Number of bed rooms",
63
        "is_categorical": true,
64
        "possible_values": [
65
          "1",
66
          "2",
67
          "3",
68
          "4"
69
        ]
70
      },
71
      {
72
        "name": "number_of_baths",
73
        "description": "Number of baths in the apartment",
74
        "is_categorical": true,
75
        "possible_values": [
76
          "1",
77
          "2",
78
          "3",
79
          "4"
80
        ]
81
      }
82
    ],
83
    "intents": [
84
      {
85
        "name": "FindApartment",
86
        "description": "Find an apartment in a city for a given number of bedrooms",
87
        "is_transactional": false,
88
        "required_slots": [
89
          "area",
90
          "number_of_beds"
91
        ],
92
        "optional_slots": {
93
          "number_of_baths": "dontcare",
94
          "furnished": "dontcare",
95
          "pets_allowed": "dontcare"
96
        }
97
      },
98
      {
99
        "name": "ScheduleVisit",
100
        "description": "Schedule a visit for a given property on a particular date",
101
        "is_transactional": true,
102
        "required_slots": [
103
          "property_name",
104
          "visit_date"
105
        ],
106
        "optional_slots": {}
107
      }
108
    ]
109
  }
110
 ]
111

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.