@garrix82/reactgenie-dsl 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (153) hide show
  1. package/README.md +436 -0
  2. package/dist/__test__/dsl-descriptor.test.d.ts +1 -0
  3. package/dist/__test__/dsl-descriptor.test.js +27 -0
  4. package/dist/__test__/dsl-descriptor.test.js.map +1 -0
  5. package/dist/__test__/example_descriptor.d.ts +125 -0
  6. package/dist/__test__/example_descriptor.js +607 -0
  7. package/dist/__test__/example_descriptor.js.map +1 -0
  8. package/dist/__test__/food_descriptor.state.json +1 -0
  9. package/dist/__test__/food_descriptor.test.d.ts +74 -0
  10. package/dist/__test__/food_descriptor.test.js +205 -0
  11. package/dist/__test__/food_descriptor.test.js.map +1 -0
  12. package/dist/__test__/nl-interpreter-provider-selection.test.d.ts +1 -0
  13. package/dist/__test__/nl-interpreter-provider-selection.test.js +73 -0
  14. package/dist/__test__/nl-interpreter-provider-selection.test.js.map +1 -0
  15. package/dist/__test__/nl-interpreter.test.d.ts +1 -0
  16. package/dist/__test__/nl-interpreter.test.js +86 -0
  17. package/dist/__test__/nl-interpreter.test.js.map +1 -0
  18. package/dist/decorators/__test__/decorators.test.d.ts +1 -0
  19. package/dist/decorators/__test__/decorators.test.js +182 -0
  20. package/dist/decorators/__test__/decorators.test.js.map +1 -0
  21. package/dist/decorators/__test__/inheritance-descriptor.test.d.ts +1 -0
  22. package/dist/decorators/__test__/inheritance-descriptor.test.js +107 -0
  23. package/dist/decorators/__test__/inheritance-descriptor.test.js.map +1 -0
  24. package/dist/decorators/decorators.d.ts +20 -0
  25. package/dist/decorators/decorators.js +520 -0
  26. package/dist/decorators/decorators.js.map +1 -0
  27. package/dist/decorators/index.d.ts +2 -0
  28. package/dist/decorators/index.js +19 -0
  29. package/dist/decorators/index.js.map +1 -0
  30. package/dist/decorators/store.d.ts +12 -0
  31. package/dist/decorators/store.js +43 -0
  32. package/dist/decorators/store.js.map +1 -0
  33. package/dist/dsl/__test__/dsl-interpreter.test.d.ts +1 -0
  34. package/dist/dsl/__test__/dsl-interpreter.test.js +334 -0
  35. package/dist/dsl/__test__/dsl-interpreter.test.js.map +1 -0
  36. package/dist/dsl/__test__/parser.gen.test.d.ts +1 -0
  37. package/dist/dsl/__test__/parser.gen.test.js +283 -0
  38. package/dist/dsl/__test__/parser.gen.test.js.map +1 -0
  39. package/dist/dsl/dsl-interpreter.d.ts +66 -0
  40. package/dist/dsl/dsl-interpreter.js +767 -0
  41. package/dist/dsl/dsl-interpreter.js.map +1 -0
  42. package/dist/dsl/index.d.ts +1 -0
  43. package/dist/dsl/index.js +18 -0
  44. package/dist/dsl/index.js.map +1 -0
  45. package/dist/dsl/parser.gen.d.ts +10 -0
  46. package/dist/dsl/parser.gen.js +1524 -0
  47. package/dist/dsl/parser.gen.js.map +1 -0
  48. package/dist/dsl-descriptor.d.ts +75 -0
  49. package/dist/dsl-descriptor.js +151 -0
  50. package/dist/dsl-descriptor.js.map +1 -0
  51. package/dist/index.d.ts +5 -0
  52. package/dist/index.js +22 -0
  53. package/dist/index.js.map +1 -0
  54. package/dist/nl/__test__/context-aware-prompt.test.d.ts +1 -0
  55. package/dist/nl/__test__/context-aware-prompt.test.js +247 -0
  56. package/dist/nl/__test__/context-aware-prompt.test.js.map +1 -0
  57. package/dist/nl/__test__/context-selector.test.d.ts +1 -0
  58. package/dist/nl/__test__/context-selector.test.js +20 -0
  59. package/dist/nl/__test__/context-selector.test.js.map +1 -0
  60. package/dist/nl/__test__/nl-parser-groq-transport.test.d.ts +1 -0
  61. package/dist/nl/__test__/nl-parser-groq-transport.test.js +87 -0
  62. package/dist/nl/__test__/nl-parser-groq-transport.test.js.map +1 -0
  63. package/dist/nl/__test__/nl-parser-openai-parity.test.d.ts +1 -0
  64. package/dist/nl/__test__/nl-parser-openai-parity.test.js +206 -0
  65. package/dist/nl/__test__/nl-parser-openai-parity.test.js.map +1 -0
  66. package/dist/nl/__test__/nl-parser-openai-sampling.test.d.ts +1 -0
  67. package/dist/nl/__test__/nl-parser-openai-sampling.test.js +44 -0
  68. package/dist/nl/__test__/nl-parser-openai-sampling.test.js.map +1 -0
  69. package/dist/nl/__test__/nl-parser-openai-transport.test.d.ts +1 -0
  70. package/dist/nl/__test__/nl-parser-openai-transport.test.js +55 -0
  71. package/dist/nl/__test__/nl-parser-openai-transport.test.js.map +1 -0
  72. package/dist/nl/__test__/nl-parser-utils.test.d.ts +1 -0
  73. package/dist/nl/__test__/nl-parser-utils.test.js +70 -0
  74. package/dist/nl/__test__/nl-parser-utils.test.js.map +1 -0
  75. package/dist/nl/__test__/nl-parser.test.d.ts +1 -0
  76. package/dist/nl/__test__/nl-parser.test.js +64 -0
  77. package/dist/nl/__test__/nl-parser.test.js.map +1 -0
  78. package/dist/nl/__test__/parameter-tuning.test.d.ts +1 -0
  79. package/dist/nl/__test__/parameter-tuning.test.js +95 -0
  80. package/dist/nl/__test__/parameter-tuning.test.js.map +1 -0
  81. package/dist/nl/__test__/semantic-parsing-experiment.test.d.ts +1 -0
  82. package/dist/nl/__test__/semantic-parsing-experiment.test.js +178 -0
  83. package/dist/nl/__test__/semantic-parsing-experiment.test.js.map +1 -0
  84. package/dist/nl/context-selector.d.ts +17 -0
  85. package/dist/nl/context-selector.js +99 -0
  86. package/dist/nl/context-selector.js.map +1 -0
  87. package/dist/nl/index.d.ts +6 -0
  88. package/dist/nl/index.js +15 -0
  89. package/dist/nl/index.js.map +1 -0
  90. package/dist/nl/llm-monitoring.d.ts +49 -0
  91. package/dist/nl/llm-monitoring.js +243 -0
  92. package/dist/nl/llm-monitoring.js.map +1 -0
  93. package/dist/nl/llm-monitoring.test.d.ts +5 -0
  94. package/dist/nl/llm-monitoring.test.js +101 -0
  95. package/dist/nl/llm-monitoring.test.js.map +1 -0
  96. package/dist/nl/nl-parser-groq.d.ts +21 -0
  97. package/dist/nl/nl-parser-groq.js +357 -0
  98. package/dist/nl/nl-parser-groq.js.map +1 -0
  99. package/dist/nl/nl-parser-utils.d.ts +101 -0
  100. package/dist/nl/nl-parser-utils.js +255 -0
  101. package/dist/nl/nl-parser-utils.js.map +1 -0
  102. package/dist/nl/nl-parser.d.ts +30 -0
  103. package/dist/nl/nl-parser.js +433 -0
  104. package/dist/nl/nl-parser.js.map +1 -0
  105. package/dist/nl/prompt-gen.d.ts +93 -0
  106. package/dist/nl/prompt-gen.js +369 -0
  107. package/dist/nl/prompt-gen.js.map +1 -0
  108. package/dist/nl/prompt-res.d.ts +16 -0
  109. package/dist/nl/prompt-res.js +190 -0
  110. package/dist/nl/prompt-res.js.map +1 -0
  111. package/dist/nl-interpreter.d.ts +48 -0
  112. package/dist/nl-interpreter.js +155 -0
  113. package/dist/nl-interpreter.js.map +1 -0
  114. package/lib/__test__/dsl-descriptor.test.ts +27 -0
  115. package/lib/__test__/example_descriptor.ts +762 -0
  116. package/lib/__test__/food_descriptor.state.json +1 -0
  117. package/lib/__test__/food_descriptor.test.ts +331 -0
  118. package/lib/__test__/nl-interpreter-provider-selection.test.ts +126 -0
  119. package/lib/__test__/nl-interpreter.test.ts +129 -0
  120. package/lib/decorators/__test__/decorators.test.ts +177 -0
  121. package/lib/decorators/__test__/inheritance-descriptor.test.ts +92 -0
  122. package/lib/decorators/decorators.ts +754 -0
  123. package/lib/decorators/index.ts +2 -0
  124. package/lib/decorators/store.ts +47 -0
  125. package/lib/dsl/__test__/dsl-interpreter.test.ts +453 -0
  126. package/lib/dsl/__test__/parser.gen.test.ts +296 -0
  127. package/lib/dsl/dsl-interpreter.ts +974 -0
  128. package/lib/dsl/index.ts +1 -0
  129. package/lib/dsl/parser.gen.js +1479 -0
  130. package/lib/dsl/parser.pegjs +130 -0
  131. package/lib/dsl-descriptor.ts +241 -0
  132. package/lib/index.ts +5 -0
  133. package/lib/nl/__test__/context-aware-prompt.test.ts +372 -0
  134. package/lib/nl/__test__/context-selector.test.ts +27 -0
  135. package/lib/nl/__test__/nl-parser-groq-transport.test.ts +139 -0
  136. package/lib/nl/__test__/nl-parser-openai-parity.test.ts +381 -0
  137. package/lib/nl/__test__/nl-parser-openai-sampling.test.ts +73 -0
  138. package/lib/nl/__test__/nl-parser-openai-transport.test.ts +79 -0
  139. package/lib/nl/__test__/nl-parser-utils.test.ts +98 -0
  140. package/lib/nl/__test__/nl-parser.test.ts +119 -0
  141. package/lib/nl/__test__/parameter-tuning.test.ts +137 -0
  142. package/lib/nl/__test__/semantic-parsing-experiment.test.ts +260 -0
  143. package/lib/nl/context-selector.ts +123 -0
  144. package/lib/nl/index.ts +19 -0
  145. package/lib/nl/llm-monitoring.test.ts +136 -0
  146. package/lib/nl/llm-monitoring.ts +339 -0
  147. package/lib/nl/nl-parser-groq.ts +510 -0
  148. package/lib/nl/nl-parser-utils.ts +310 -0
  149. package/lib/nl/nl-parser.ts +616 -0
  150. package/lib/nl/prompt-gen.ts +607 -0
  151. package/lib/nl/prompt-res.ts +207 -0
  152. package/lib/nl-interpreter.ts +262 -0
  153. package/package.json +58 -0
@@ -0,0 +1,607 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var DateTime_1, Food_1, Order_1, Restaurant_1;
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ exports.examples = exports.classDescriptions = exports.allDescriptors = exports.Restaurant = exports.Order = exports.Food = exports.DateTime = exports.recentBooking = void 0;
14
+ const dsl_descriptor_1 = require("../dsl-descriptor");
15
+ const decorators_1 = require("../decorators");
16
+ exports.recentBooking = null;
17
+ let DateTime = class DateTime extends dsl_descriptor_1.HelperClass {
18
+ static { DateTime_1 = this; }
19
+ updateDate() {
20
+ this.year = this._date.getFullYear();
21
+ this.month = this._date.getMonth() + 1;
22
+ this.day = this._date.getDate();
23
+ this.hour = this._date.getHours();
24
+ this.minute = this._date.getMinutes();
25
+ this.dayOfWeek = this._date.toLocaleDateString("en-US", { weekday: "long" });
26
+ }
27
+ static today() {
28
+ return DateTime_1.CreateObject({
29
+ year: 2020,
30
+ month: 2,
31
+ day: 4,
32
+ hour: 12,
33
+ minute: 0,
34
+ });
35
+ }
36
+ static { this.sunday = 0; }
37
+ static { this.monday = 1; }
38
+ static { this.tuesday = 2; }
39
+ static { this.wednesday = 3; }
40
+ static { this.thursday = 4; }
41
+ static { this.friday = 5; }
42
+ static { this.saturday = 6; }
43
+ static fromDate(date) {
44
+ const dt = DateTime_1.CreateObject({});
45
+ dt._date = date;
46
+ dt.updateDate();
47
+ return dt;
48
+ }
49
+ description() {
50
+ return {
51
+ year: this.year,
52
+ month: this.month,
53
+ day: this.day,
54
+ dayOfWeek: this.dayOfWeek,
55
+ hour: this.hour,
56
+ minute: this.minute,
57
+ };
58
+ }
59
+ static compare(a, b) {
60
+ return a._date.getTime() - b._date.getTime();
61
+ }
62
+ constructor({ year = undefined, month = undefined, day = undefined, hour = undefined, minute = undefined, }) {
63
+ super({});
64
+ this._date = new Date();
65
+ this.setDate({ year, month, day, hour, minute });
66
+ }
67
+ _getConstructorParams() {
68
+ return {
69
+ year: this.year,
70
+ month: this.month,
71
+ day: this.day,
72
+ hour: this.hour,
73
+ minute: this.minute,
74
+ };
75
+ }
76
+ addDateOffset({ year = 0, month = 0, day = 0, hour = 0, minute = 0, }) {
77
+ this._date.setFullYear(this._date.getFullYear() + year);
78
+ this._date.setMonth(this._date.getMonth() + month);
79
+ this._date.setDate(this._date.getDate() + day);
80
+ this._date.setHours(this._date.getHours() + hour);
81
+ this._date.setMinutes(this._date.getMinutes() + minute);
82
+ this.updateDate();
83
+ return this;
84
+ }
85
+ setDate({ year = undefined, month = undefined, day = undefined, hour = undefined, minute = undefined, day_of_the_week = undefined, }) {
86
+ if (year !== undefined) {
87
+ this._date.setFullYear(year);
88
+ }
89
+ if (month !== undefined) {
90
+ this._date.setMonth(month - 1);
91
+ }
92
+ if (day !== undefined) {
93
+ this._date.setDate(day);
94
+ }
95
+ if (day_of_the_week !== undefined) {
96
+ this._date.setDate(this._date.getDate() + (day_of_the_week - this._date.getDay()));
97
+ }
98
+ if (hour !== undefined) {
99
+ this._date.setHours(hour);
100
+ }
101
+ if (minute !== undefined) {
102
+ this._date.setMinutes(minute);
103
+ }
104
+ this.updateDate();
105
+ return this;
106
+ }
107
+ toString() {
108
+ return `${this.year}-${this.month}-${this.day} ${this.hour}:${this.minute}`;
109
+ }
110
+ static { this._ClassDescriptor = new dsl_descriptor_1.ClassDescriptor("DateTime", [
111
+ new dsl_descriptor_1.FuncDescriptor("addDateOffset", [
112
+ new dsl_descriptor_1.ParamDescriptor("year", "int"),
113
+ new dsl_descriptor_1.ParamDescriptor("month", "int"),
114
+ new dsl_descriptor_1.ParamDescriptor("day", "int"),
115
+ new dsl_descriptor_1.ParamDescriptor("hour", "int"),
116
+ new dsl_descriptor_1.ParamDescriptor("minute", "int"),
117
+ ], "DateTime", false, "Add a date offset to the current date"),
118
+ new dsl_descriptor_1.FuncDescriptor("constructor", [
119
+ new dsl_descriptor_1.ParamDescriptor("year", "int", false),
120
+ new dsl_descriptor_1.ParamDescriptor("month", "int", false),
121
+ new dsl_descriptor_1.ParamDescriptor("day", "int", false),
122
+ new dsl_descriptor_1.ParamDescriptor("hour", "int", false),
123
+ new dsl_descriptor_1.ParamDescriptor("minute", "int", false),
124
+ ], "DateTime", false, "Create a new date time object"),
125
+ new dsl_descriptor_1.FuncDescriptor("setDate", [
126
+ new dsl_descriptor_1.ParamDescriptor("year", "int", false),
127
+ new dsl_descriptor_1.ParamDescriptor("month", "int", false),
128
+ new dsl_descriptor_1.ParamDescriptor("day", "int", false),
129
+ new dsl_descriptor_1.ParamDescriptor("hour", "int", false),
130
+ new dsl_descriptor_1.ParamDescriptor("minute", "int", false),
131
+ new dsl_descriptor_1.ParamDescriptor("day_of_the_week", "int", false),
132
+ ], "DateTime", false, "Set the date of the date time object"),
133
+ new dsl_descriptor_1.FuncDescriptor("today", [], "DateTime", true, "Get the current date time"),
134
+ ], [
135
+ new dsl_descriptor_1.FieldDescriptor("year", "int", false),
136
+ new dsl_descriptor_1.FieldDescriptor("month", "int", false),
137
+ new dsl_descriptor_1.FieldDescriptor("day", "int", false),
138
+ new dsl_descriptor_1.FieldDescriptor("hour", "int", false),
139
+ new dsl_descriptor_1.FieldDescriptor("minute", "int", false),
140
+ new dsl_descriptor_1.FieldDescriptor("dayOfWeek", "string", false),
141
+ new dsl_descriptor_1.FieldDescriptor("sunday", "int", true),
142
+ new dsl_descriptor_1.FieldDescriptor("monday", "int", true),
143
+ new dsl_descriptor_1.FieldDescriptor("tuesday", "int", true),
144
+ new dsl_descriptor_1.FieldDescriptor("wednesday", "int", true),
145
+ new dsl_descriptor_1.FieldDescriptor("thursday", "int", true),
146
+ new dsl_descriptor_1.FieldDescriptor("friday", "int", true),
147
+ new dsl_descriptor_1.FieldDescriptor("saturday", "int", true),
148
+ ], DateTime_1, "Representing a date and time"); }
149
+ };
150
+ exports.DateTime = DateTime;
151
+ exports.DateTime = DateTime = DateTime_1 = __decorate([
152
+ (0, decorators_1.GenieClass)("Representing a date and time"),
153
+ __metadata("design:paramtypes", [Object])
154
+ ], DateTime);
155
+ let Food = class Food extends dsl_descriptor_1.DataClass {
156
+ static { Food_1 = this; }
157
+ static { this._all = []; }
158
+ static all() {
159
+ return Food_1._all;
160
+ }
161
+ constructor({ name, price, restaurant, }) {
162
+ super({});
163
+ this.name = name;
164
+ this._price = price;
165
+ this.restaurant = restaurant;
166
+ Food_1._all.push(this);
167
+ }
168
+ async update() {
169
+ await new Promise((resolve) => {
170
+ setTimeout(() => {
171
+ resolve(void 0);
172
+ }, 10);
173
+ });
174
+ this.price = this._price;
175
+ }
176
+ description() {
177
+ return {
178
+ name: this.name,
179
+ price: this.price,
180
+ restaurant: this.restaurant.name,
181
+ };
182
+ }
183
+ static { this._ClassDescriptor = new dsl_descriptor_1.ClassDescriptor("Food", [new dsl_descriptor_1.FuncDescriptor("all", [], "Food[]", true, "All foods"),
184
+ new dsl_descriptor_1.FuncDescriptor("All", [], "Food[]", true, "")
185
+ ], [
186
+ new dsl_descriptor_1.FieldDescriptor("name", "string", false),
187
+ new dsl_descriptor_1.FieldDescriptor("price", "float", false),
188
+ new dsl_descriptor_1.FieldDescriptor("restaurant", "Restaurant", false, "The restaurant this food is served at"),
189
+ ], Food_1, "A food item"); }
190
+ };
191
+ exports.Food = Food;
192
+ __decorate([
193
+ decorators_1.GenieKey,
194
+ (0, decorators_1.GenieProperty)("Name of the food item"),
195
+ __metadata("design:type", String)
196
+ ], Food.prototype, "name", void 0);
197
+ __decorate([
198
+ (0, decorators_1.GenieProperty)("Price of the food item"),
199
+ __metadata("design:type", Number)
200
+ ], Food.prototype, "price", void 0);
201
+ __decorate([
202
+ (0, decorators_1.GenieProperty)("Restaurant of the food item"),
203
+ __metadata("design:type", Object)
204
+ ], Food.prototype, "restaurant", void 0);
205
+ __decorate([
206
+ (0, decorators_1.GenieFunction)("Get all food items"),
207
+ __metadata("design:type", Function),
208
+ __metadata("design:paramtypes", []),
209
+ __metadata("design:returntype", Array)
210
+ ], Food, "all", null);
211
+ exports.Food = Food = Food_1 = __decorate([
212
+ (0, decorators_1.GenieClass)("A food item"),
213
+ __metadata("design:paramtypes", [Object])
214
+ ], Food);
215
+ let Order = class Order extends dsl_descriptor_1.DataClass {
216
+ static { Order_1 = this; }
217
+ static { this._all = []; }
218
+ static all() {
219
+ return Order_1._all;
220
+ }
221
+ static { this._current = undefined; }
222
+ static async current() {
223
+ if (this._current === undefined) {
224
+ this._current = Order_1.CreateObject({
225
+ orderId: (Order_1.all().length + 1).toString(),
226
+ dateTime: DateTime.fromDate(new Date()),
227
+ foods: [],
228
+ restaurant: await Restaurant.current(),
229
+ });
230
+ }
231
+ return this._current;
232
+ }
233
+ constructor({ orderId, dateTime, foods, restaurant, }) {
234
+ super({ orderId: orderId });
235
+ this.orderId = (Order_1.all().length + 1).toString();
236
+ this.dateTime = dateTime;
237
+ this.foods = foods;
238
+ this.restaurant = restaurant;
239
+ Order_1._all.push(this);
240
+ }
241
+ addFoods({ foods }) {
242
+ this.foods.push(...foods);
243
+ }
244
+ removeFoods({ foods }) {
245
+ this.foods = this.foods.filter((f) => !foods.includes(f));
246
+ }
247
+ placeOrder() {
248
+ this.restaurant.orders.push(this);
249
+ }
250
+ description() {
251
+ return {
252
+ dateTime: this.dateTime.toString(),
253
+ foods: this.foods.map((f) => f.name),
254
+ restaurant: this.restaurant.name,
255
+ };
256
+ }
257
+ static { this._ClassDescriptor = new dsl_descriptor_1.ClassDescriptor("Order", [
258
+ new dsl_descriptor_1.FuncDescriptor("addFoods", [new dsl_descriptor_1.ParamDescriptor("foods", "Food[]")], "void", false, "Add a list of foods to the order"),
259
+ new dsl_descriptor_1.FuncDescriptor("removeFoods", [new dsl_descriptor_1.ParamDescriptor("foods", "Food[]")], "void", false, "Remove a list of foods from the order"),
260
+ new dsl_descriptor_1.FuncDescriptor("placeOrder", [], "void", false, "Place the order"),
261
+ new dsl_descriptor_1.FuncDescriptor("current", [], "Order", true, "The current order"),
262
+ new dsl_descriptor_1.FuncDescriptor("all", [], "Order[]", true, "All past orders"),
263
+ new dsl_descriptor_1.FuncDescriptor("All", [], "Order[]", true, ""),
264
+ ], [
265
+ new dsl_descriptor_1.FieldDescriptor("orderId", "string", false),
266
+ new dsl_descriptor_1.FieldDescriptor("dateTime", "DateTime", false),
267
+ new dsl_descriptor_1.FieldDescriptor("foods", "Food[]", false),
268
+ new dsl_descriptor_1.FieldDescriptor("restaurant", "Restaurant", false),
269
+ ], Order_1, "An Order"); }
270
+ };
271
+ exports.Order = Order;
272
+ __decorate([
273
+ decorators_1.GenieKey,
274
+ (0, decorators_1.GenieProperty)("Order ID number"),
275
+ __metadata("design:type", String)
276
+ ], Order.prototype, "orderId", void 0);
277
+ __decorate([
278
+ (0, decorators_1.GenieProperty)("Time that order is placed"),
279
+ __metadata("design:type", DateTime)
280
+ ], Order.prototype, "dateTime", void 0);
281
+ __decorate([
282
+ (0, decorators_1.GenieProperty)("Foods in the order"),
283
+ __metadata("design:type", Array)
284
+ ], Order.prototype, "foods", void 0);
285
+ __decorate([
286
+ (0, decorators_1.GenieProperty)("Restaurant of the order"),
287
+ __metadata("design:type", Object)
288
+ ], Order.prototype, "restaurant", void 0);
289
+ __decorate([
290
+ (0, decorators_1.GenieFunction)("Add foods to the order"),
291
+ __metadata("design:type", Function),
292
+ __metadata("design:paramtypes", [Object]),
293
+ __metadata("design:returntype", void 0)
294
+ ], Order.prototype, "addFoods", null);
295
+ __decorate([
296
+ (0, decorators_1.GenieFunction)("Remove foods from the order"),
297
+ __metadata("design:type", Function),
298
+ __metadata("design:paramtypes", [Object]),
299
+ __metadata("design:returntype", void 0)
300
+ ], Order.prototype, "removeFoods", null);
301
+ __decorate([
302
+ (0, decorators_1.GenieFunction)("Place the order"),
303
+ __metadata("design:type", Function),
304
+ __metadata("design:paramtypes", []),
305
+ __metadata("design:returntype", void 0)
306
+ ], Order.prototype, "placeOrder", null);
307
+ __decorate([
308
+ (0, decorators_1.GenieFunction)("Get all orders"),
309
+ __metadata("design:type", Function),
310
+ __metadata("design:paramtypes", []),
311
+ __metadata("design:returntype", Array)
312
+ ], Order, "all", null);
313
+ __decorate([
314
+ (0, decorators_1.GenieFunction)("Get the current order"),
315
+ __metadata("design:type", Function),
316
+ __metadata("design:paramtypes", []),
317
+ __metadata("design:returntype", Promise)
318
+ ], Order, "current", null);
319
+ exports.Order = Order = Order_1 = __decorate([
320
+ (0, decorators_1.GenieClass)("An Order"),
321
+ __metadata("design:paramtypes", [Object])
322
+ ], Order);
323
+ let Restaurant = class Restaurant extends dsl_descriptor_1.DataClass {
324
+ static { Restaurant_1 = this; }
325
+ static { this._all = undefined; }
326
+ static all() {
327
+ if (this._all === undefined) {
328
+ const mcDonald = Restaurant_1.CreateObject({
329
+ name: "McDonald's",
330
+ menu: [],
331
+ rating: 4,
332
+ priceGrade: 2,
333
+ cuisine: "Fast Food",
334
+ address: "123 Main St, Mountain view, USA",
335
+ });
336
+ const kfc = Restaurant_1.CreateObject({
337
+ name: "KFC",
338
+ menu: [],
339
+ rating: 3,
340
+ priceGrade: 1,
341
+ cuisine: "Fast Food",
342
+ address: "123 Main St, Palo Alto, USA",
343
+ });
344
+ const pizzaHut = Restaurant_1.CreateObject({
345
+ name: "Pizza Hut",
346
+ menu: [],
347
+ rating: 4,
348
+ priceGrade: 2,
349
+ cuisine: "Fast Food",
350
+ address: "123 Main St, Palo Alto, USA",
351
+ });
352
+ const burgerKing = Restaurant_1.CreateObject({
353
+ name: "Burger King",
354
+ menu: [],
355
+ rating: 4,
356
+ priceGrade: 2,
357
+ cuisine: "Fast Food",
358
+ address: "123 Main St, Mountain View, USA",
359
+ });
360
+ const taste = Restaurant_1.CreateObject({
361
+ name: "Taste",
362
+ menu: [],
363
+ rating: 5,
364
+ priceGrade: 3,
365
+ cuisine: "Chinese",
366
+ address: "123 Main St, Palo Alto, USA",
367
+ });
368
+ const orensHummus = Restaurant_1.CreateObject({
369
+ name: "Oren's Hummus",
370
+ menu: [],
371
+ rating: 4,
372
+ priceGrade: 2,
373
+ cuisine: "Middle Eastern",
374
+ address: "123 Main St, Mountain View, USA",
375
+ });
376
+ const steam = Restaurant_1.CreateObject({
377
+ name: "Steam",
378
+ menu: [],
379
+ rating: 4,
380
+ priceGrade: 2,
381
+ cuisine: "Chinese",
382
+ address: "123 Main St, Palo Alto, USA",
383
+ });
384
+ mcDonald.createFood("Hamburger", 5);
385
+ mcDonald.createFood("Cheeseburger", 6);
386
+ mcDonald.createFood("McFlurry", 3);
387
+ mcDonald.createFood("McChicken", 4);
388
+ mcDonald.createFood("McDouble", 4);
389
+ mcDonald.createFood("Coca Cola Coke", 2);
390
+ mcDonald.createOrder((Order.all().length + 1).toString(), DateTime.CreateObject({
391
+ year: 2020,
392
+ month: 1,
393
+ day: 1,
394
+ hour: 12,
395
+ minute: 0,
396
+ }), [mcDonald.menu[0], mcDonald.menu[1]]);
397
+ mcDonald.createOrder((Order.all().length + 1).toString(), DateTime.CreateObject({
398
+ year: 2020,
399
+ month: 2,
400
+ day: 1,
401
+ hour: 13,
402
+ minute: 0,
403
+ }), [mcDonald.menu[2], mcDonald.menu[3]]);
404
+ mcDonald.createOrder((Order.all().length + 1).toString(), DateTime.CreateObject({
405
+ year: 2020,
406
+ month: 2,
407
+ day: 3,
408
+ hour: 14,
409
+ minute: 0,
410
+ }), [mcDonald.menu[4], mcDonald.menu[5]]);
411
+ kfc.createFood("Chicken", 5);
412
+ kfc.createFood("Fries", 2);
413
+ kfc.createFood("Pepsi Coke", 2);
414
+ kfc.createOrder((Order.all().length + 1).toString(), DateTime.CreateObject({
415
+ year: 2020,
416
+ month: 1,
417
+ day: 4,
418
+ hour: 15,
419
+ minute: 0,
420
+ }), [kfc.menu[0], kfc.menu[1]]);
421
+ this._all = [
422
+ mcDonald,
423
+ kfc,
424
+ pizzaHut,
425
+ burgerKing,
426
+ taste,
427
+ orensHummus,
428
+ steam,
429
+ ];
430
+ }
431
+ return this._all;
432
+ }
433
+ description() {
434
+ return {
435
+ name: this.name,
436
+ cuisine: this.cuisine,
437
+ rating: this.rating,
438
+ priceGrade: this.priceGrade,
439
+ address: this.address,
440
+ };
441
+ }
442
+ createFood(name, price) {
443
+ const food = Food.CreateObject({ name, price, restaurant: this });
444
+ this.menu.push(food);
445
+ return food;
446
+ }
447
+ async createOrder(orderId, dateTime, foods) {
448
+ const order = Order.CreateObject({
449
+ orderId,
450
+ dateTime,
451
+ foods,
452
+ restaurant: this,
453
+ });
454
+ this.orders.push(order);
455
+ return new Promise((resolve) => {
456
+ setTimeout(() => {
457
+ resolve(order);
458
+ }, 10);
459
+ });
460
+ }
461
+ static async current() {
462
+ await new Promise((resolve) => {
463
+ setTimeout(() => {
464
+ resolve(void 0);
465
+ }, 10);
466
+ });
467
+ return this.all()[0];
468
+ }
469
+ book({ dateTime = DateTime.today() }) {
470
+ console.log(`${this.name} is booking for ${dateTime.toString()}`);
471
+ exports.recentBooking = `${this.name} is booking for ${dateTime.toString()}`;
472
+ }
473
+ bookTable({ dateTime = undefined, number }) {
474
+ if (dateTime === undefined) {
475
+ dateTime = DateTime.today();
476
+ }
477
+ if (number === undefined) {
478
+ number = 1;
479
+ }
480
+ console.log(`${this.name} is booking ${number} tables for ${dateTime.toString()}`);
481
+ exports.recentBooking = `${this.name} is booking ${number} tables for ${dateTime.toString()}`;
482
+ }
483
+ constructor({ name, menu, rating = 0, priceGrade = 0, cuisine = "", address = "", }) {
484
+ super({ name: name });
485
+ this.orders = [];
486
+ this.name = name;
487
+ this.menu = menu;
488
+ this.rating = rating;
489
+ this.priceGrade = priceGrade;
490
+ this.cuisine = cuisine;
491
+ this.address = address;
492
+ }
493
+ static { this._ClassDescriptor = new dsl_descriptor_1.ClassDescriptor("Restaurant", [
494
+ new dsl_descriptor_1.FuncDescriptor("all", [], "Restaurant[]", true, "All active restaurants"),
495
+ new dsl_descriptor_1.FuncDescriptor("All", [], "Restaurant[]", true, "All active restaurants"),
496
+ new dsl_descriptor_1.FuncDescriptor("current", [], "Restaurant", true, "The current restaurant"),
497
+ new dsl_descriptor_1.FuncDescriptor("book", [new dsl_descriptor_1.ParamDescriptor("dateTime", "DateTime", false, "DateTime.today()")], "void", false, "Book a table for a given date time"),
498
+ new dsl_descriptor_1.FuncDescriptor("bookTable", [
499
+ new dsl_descriptor_1.ParamDescriptor("dateTime", "DateTime", false, null),
500
+ new dsl_descriptor_1.ParamDescriptor("number", "int", false, null)
501
+ ], "void", false, "Book numbers tables for a given date time"),
502
+ ], [
503
+ new dsl_descriptor_1.FieldDescriptor("name", "string", false),
504
+ new dsl_descriptor_1.FieldDescriptor("menu", "Food[]", false),
505
+ new dsl_descriptor_1.FieldDescriptor("rating", "int", false),
506
+ new dsl_descriptor_1.FieldDescriptor("priceGrade", "float", false),
507
+ new dsl_descriptor_1.FieldDescriptor("cuisine", "string", false),
508
+ new dsl_descriptor_1.FieldDescriptor("address", "string", false),
509
+ new dsl_descriptor_1.FieldDescriptor("orders", "Order[]", false),
510
+ ], Restaurant_1, "A restaurant"); }
511
+ };
512
+ exports.Restaurant = Restaurant;
513
+ __decorate([
514
+ (0, decorators_1.GenieProperty)("Past orders of the restaurant"),
515
+ __metadata("design:type", Array)
516
+ ], Restaurant.prototype, "orders", void 0);
517
+ __decorate([
518
+ (0, decorators_1.GenieFunction)("Book a table for a given date time"),
519
+ __metadata("design:type", Function),
520
+ __metadata("design:paramtypes", [Object]),
521
+ __metadata("design:returntype", void 0)
522
+ ], Restaurant.prototype, "book", null);
523
+ __decorate([
524
+ (0, decorators_1.GenieFunction)("Book numbers tables for a given date time"),
525
+ __metadata("design:type", Function),
526
+ __metadata("design:paramtypes", [Object]),
527
+ __metadata("design:returntype", void 0)
528
+ ], Restaurant.prototype, "bookTable", null);
529
+ __decorate([
530
+ decorators_1.GenieKey,
531
+ (0, decorators_1.GenieProperty)("Name of the restaurant"),
532
+ __metadata("design:type", String)
533
+ ], Restaurant.prototype, "name", void 0);
534
+ __decorate([
535
+ (0, decorators_1.GenieProperty)("Menu of the restaurant"),
536
+ __metadata("design:type", Array)
537
+ ], Restaurant.prototype, "menu", void 0);
538
+ __decorate([
539
+ (0, decorators_1.GenieProperty)("Rating of the restaurant"),
540
+ __metadata("design:type", Number)
541
+ ], Restaurant.prototype, "rating", void 0);
542
+ __decorate([
543
+ (0, decorators_1.GenieProperty)("Price grade of the restaurant"),
544
+ __metadata("design:type", Number)
545
+ ], Restaurant.prototype, "priceGrade", void 0);
546
+ __decorate([
547
+ (0, decorators_1.GenieProperty)("Cuisine of the restaurant"),
548
+ __metadata("design:type", String)
549
+ ], Restaurant.prototype, "cuisine", void 0);
550
+ __decorate([
551
+ (0, decorators_1.GenieProperty)("Address of the restaurant"),
552
+ __metadata("design:type", String)
553
+ ], Restaurant.prototype, "address", void 0);
554
+ __decorate([
555
+ (0, decorators_1.GenieFunction)("Get all restaurants"),
556
+ __metadata("design:type", Function),
557
+ __metadata("design:paramtypes", []),
558
+ __metadata("design:returntype", Array)
559
+ ], Restaurant, "all", null);
560
+ __decorate([
561
+ (0, decorators_1.GenieFunction)("Get the current restaurant"),
562
+ __metadata("design:type", Function),
563
+ __metadata("design:paramtypes", []),
564
+ __metadata("design:returntype", Promise)
565
+ ], Restaurant, "current", null);
566
+ exports.Restaurant = Restaurant = Restaurant_1 = __decorate([
567
+ (0, decorators_1.GenieClass)("A restaurant"),
568
+ __metadata("design:paramtypes", [Object])
569
+ ], Restaurant);
570
+ exports.allDescriptors = [
571
+ Restaurant.ClassDescriptor,
572
+ Food.ClassDescriptor,
573
+ Order.ClassDescriptor,
574
+ DateTime._ClassDescriptor,
575
+ ];
576
+ exports.classDescriptions = exports.allDescriptors.map((d) => d.description());
577
+ exports.examples = [
578
+ {
579
+ user_utterance: "get me the best restaurant in palo alto",
580
+ example_parsed: 'Restaurant.all().matching(field: .address, value: "palo alto").sort(field: .rating, ascending: false)[0]',
581
+ },
582
+ {
583
+ user_utterance: "get me the least expensive restaurant that serves chinese food",
584
+ example_parsed: 'Restaurant.all().matching(field: .cuisine, value: "chinese").sort(field: .price, ascending: true)[0]',
585
+ },
586
+ {
587
+ user_utterance: "add hamburger to the order",
588
+ example_parsed: 'Order.current().addFoods(foods: [Restaurant.current().menu.matching(field: .name, value: "hamburger")[0]])',
589
+ },
590
+ {
591
+ user_utterance: "remove hamburger from the order",
592
+ example_parsed: 'Order.current().removeFoods(foods: Order.current().foods.matching(field: .name, value: "hamburger"))',
593
+ },
594
+ {
595
+ user_utterance: "what do I have in my order",
596
+ example_parsed: "Order.current().foods",
597
+ },
598
+ {
599
+ user_utterance: "what did I ordered at mcDonald last time?",
600
+ example_parsed: 'Order.all().matching(field: .restaurant, value: Restaurant.all().matching(field: .name, value: "mcDonald")[0]).sort(field: .dateTime, ascending: false)[0].foods\n',
601
+ },
602
+ {
603
+ user_utterance: "what's my recent order with a milkshake?",
604
+ example_parsed: 'Order.all().contains(field: .foods, value: Food.all().matching(field: .name, value: "milkshake")[0]).sort(field: .dateTime, ascending: false)[0]',
605
+ },
606
+ ];
607
+ //# sourceMappingURL=example_descriptor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"example_descriptor.js","sourceRoot":"","sources":["../../lib/__test__/example_descriptor.ts"],"names":[],"mappings":"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"}