@xapp/stentor-service-generative-ai 1.67.0 → 1.69.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.
|
@@ -50,7 +50,7 @@ class GenerativeAIService {
|
|
|
50
50
|
delete analysis.highValueLead;
|
|
51
51
|
}
|
|
52
52
|
// ADDING VERSION
|
|
53
|
-
analysis.analysisVersion = "1.0
|
|
53
|
+
analysis.analysisVersion = "1.1.0"; // Update this version when the analysis process changes
|
|
54
54
|
return analysis;
|
|
55
55
|
});
|
|
56
56
|
}
|
|
@@ -10,7 +10,7 @@ export type AnalyzeWebsiteData = {
|
|
|
10
10
|
};
|
|
11
11
|
export interface IGenerativeAIService {
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Executes a custom prompt that the user is responsible for creating and parsing.
|
|
14
14
|
*
|
|
15
15
|
* @param prompt
|
|
16
16
|
*/
|
|
@@ -134,43 +134,75 @@ You will return you analysis as a JSON object with the following properties:
|
|
|
134
134
|
|
|
135
135
|
Provide your analysis of why you made these decisions which will be placed in the value "analysis". Include why you made decisions for contactType, serviceType, jobType and urgency. The analysis should be concise and provide enough detail to understand your reasoning. The analysis should not exceed 500 characters.
|
|
136
136
|
|
|
137
|
-
|
|
138
|
-
QUESTION:
|
|
139
|
-
SPAM:
|
|
140
|
-
COMPLAINT:
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
137
|
+
"contactType" definitions are as follows:
|
|
138
|
+
QUESTION: Asking about the business or product without requesting a quote or service. Needs a human reply.
|
|
139
|
+
SPAM: Unsolicited, irrelevant, gibberish, or fake/incomplete contact info.
|
|
140
|
+
COMPLAINT: Dissatisfaction with the business or product, excluding billing or scheduling issues.
|
|
141
|
+
BILLING_ISSUE: Concerns about charges, refunds, payments (e.g., “billed for service not done”).
|
|
142
|
+
QUOTE_REQUEST: Requesting a price or quote for a product or service.
|
|
143
|
+
SERVICE_REQUEST: Requesting service or support, including repair or routine maintenance.
|
|
144
|
+
COMPLIMENT: Positive feedback about the business or product.
|
|
145
|
+
EMPLOYMENT_INQUIRY: Asking about jobs or employment.
|
|
146
|
+
CONTACT_REQUEST: Asking for someone to contact them, without clearly requesting a quote, service, reschedule, or cancellation.
|
|
147
|
+
RESCHEDULE_REQUEST: Asking to change the date/time of a scheduled appointment or service.
|
|
148
|
+
CANCELLATION: Asking to cancel an appointment, service, or contract.
|
|
149
|
+
MISSED_APPOINTMENT: Reporting a no‑show/missed call/visit or confusion about confirmation vs. preference.
|
|
150
|
+
TEST: A test message, not a real lead.
|
|
151
|
+
OTHER: Content cannot be determined from the transcript.
|
|
147
152
|
|
|
148
|
-
|
|
149
|
-
INSTALLATION: The interaction is requesting an installation service.
|
|
150
|
-
REPAIR: The interaction is requesting a repair service.
|
|
151
|
-
MAINTENANCE: The interaction is requesting a maintenance service.
|
|
152
|
-
CLEANING: The interaction is requesting a cleaning service.
|
|
153
|
-
OTHER: The interaction is requesting a service that does not fit in to any of the other categories above. If two or more service types apply, choose the most specific one.
|
|
153
|
+
When multiple could apply, prefer BILLING_ISSUE, RESCHEDULE_REQUEST, CANCELLATION, or MISSED_APPOINTMENT over COMPLAINT or CONTACT_REQUEST.
|
|
154
154
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
155
|
+
"serviceType" definitions are as follows:
|
|
156
|
+
CLEANING: Cleaning work (e.g., house, windows, ducts, carpet, gutters).
|
|
157
|
+
INSPECTION: Evaluation or check to assess a condition or issue (e.g., termite, mold, roof, crawlspace, safety, pre-sale).
|
|
158
|
+
INSTALLATION: New install of a product or system.
|
|
159
|
+
MAINTENANCE: Routine or recurring upkeep (e.g., HVAC tune-up, landscaping, gutter service).
|
|
160
|
+
REPAIR: Fixing an existing product or system.
|
|
161
|
+
TREATMENT: Active service to resolve or prevent an issue (e.g., pest treatment, mold remediation, lawn spraying, rodent removal, recurring pest plans).
|
|
162
|
+
OTHER: Anything not covered above. If multiple apply, pick the most specific.
|
|
163
|
+
|
|
164
|
+
jobType definitions are as follows:
|
|
165
|
+
appliance_repair: Appliance repair services.
|
|
166
|
+
blinds: Window blinds and shades installation services.
|
|
167
|
+
carpentry: Carpentry or woodworking services.
|
|
168
|
+
cleaning: General cleaning services (house, carpet, duct, etc.).
|
|
169
|
+
construction: General construction services.
|
|
170
|
+
contractor: General contracting services (same as construction).
|
|
171
|
+
drywall: Drywall installation or repair.
|
|
172
|
+
electrical: Electrical work or services.
|
|
173
|
+
electrician: Electrical work or services (same as electrical).
|
|
174
|
+
fencing: Fence installation or repair.
|
|
175
|
+
flooring: Flooring installation, refinishing, or repair (hardwood, tile, etc.).
|
|
176
|
+
gutter: Gutter installation, rerouting, or cleaning.
|
|
177
|
+
gutters: Gutter services (same as gutter).
|
|
178
|
+
handyman: General home repair and maintenance services.
|
|
179
|
+
house_cleaning: House cleaning services (same as cleaning).
|
|
180
|
+
hvac: Heating, ventilation, or air conditioning services.
|
|
181
|
+
junk_removal: Junk and debris removal services.
|
|
182
|
+
landscaping: Landscaping or yard services.
|
|
183
|
+
landscaper: Landscaping services (same as landscaping).
|
|
184
|
+
legal_services: Legal services.
|
|
185
|
+
masonry: Masonry, brick, stone, or tuckpointing work.
|
|
186
|
+
mold_remediation: Mold inspection, removal, or remediation services.
|
|
187
|
+
moving: Moving or relocation services.
|
|
188
|
+
movers: Moving services (same as moving).
|
|
189
|
+
painting: Painting services.
|
|
190
|
+
painter: Painting services (same as painting).
|
|
191
|
+
pest_control: Pest control services (insects, termites, rodents).
|
|
192
|
+
plumbing: Plumbing services.
|
|
193
|
+
pressure_washing: Pressure washing and power washing services.
|
|
194
|
+
remodeling: Remodeling or renovation (kitchen, bathroom, home).
|
|
195
|
+
remodeler: Remodeling services (same as remodeling).
|
|
196
|
+
restoration: Water, fire, or damage restoration services.
|
|
197
|
+
roofing: Roofing services.
|
|
198
|
+
roofer: Roofing services (same as roofing).
|
|
199
|
+
siding: Siding installation or repair services.
|
|
200
|
+
tree_services: Tree removal, trimming, and care services.
|
|
201
|
+
wildlife_control: Wildlife removal or exclusion services (e.g., raccoons, squirrels, bats).
|
|
202
|
+
window_cleaning: Window cleaning services.
|
|
203
|
+
window_installation: Window installation or replacement services.
|
|
204
|
+
windows_doors: Window or door installation or replacement.
|
|
205
|
+
other: Services that do not fit above.
|
|
174
206
|
|
|
175
207
|
The definitions of each "urgency" value are as follows:
|
|
176
208
|
LOW: The interaction requests a service that is not time sensitive at all and can be addressed at the business's convenience.
|
|
@@ -233,11 +265,16 @@ ${parsedFields}
|
|
|
233
265
|
"QUESTION",
|
|
234
266
|
"SPAM",
|
|
235
267
|
"COMPLAINT",
|
|
268
|
+
"BILLING_ISSUE",
|
|
236
269
|
"CONTACT_REQUEST",
|
|
237
270
|
"QUOTE_REQUEST",
|
|
238
271
|
"SERVICE_REQUEST",
|
|
239
272
|
"COMPLIMENT",
|
|
240
273
|
"EMPLOYMENT_INQUIRY",
|
|
274
|
+
"RESCHEDULE_REQUEST",
|
|
275
|
+
"CANCELLATION",
|
|
276
|
+
"MISSED_APPOINTMENT",
|
|
277
|
+
"TEST",
|
|
241
278
|
"OTHER"
|
|
242
279
|
]
|
|
243
280
|
},
|
|
@@ -245,28 +282,51 @@ ${parsedFields}
|
|
|
245
282
|
type: "string",
|
|
246
283
|
enum: [
|
|
247
284
|
"appliance_repair",
|
|
285
|
+
"blinds",
|
|
248
286
|
"carpentry",
|
|
249
287
|
"cleaning",
|
|
250
288
|
"construction",
|
|
289
|
+
"contractor",
|
|
251
290
|
"drywall",
|
|
252
291
|
"electrical",
|
|
292
|
+
"electrician",
|
|
253
293
|
"fencing",
|
|
294
|
+
"flooring",
|
|
295
|
+
"gutter",
|
|
296
|
+
"gutters",
|
|
297
|
+
"handyman",
|
|
298
|
+
"house_cleaning",
|
|
254
299
|
"hvac",
|
|
300
|
+
"junk_removal",
|
|
255
301
|
"landscaping",
|
|
302
|
+
"landscaper",
|
|
256
303
|
"legal_services",
|
|
304
|
+
"masonry",
|
|
305
|
+
"mold_remediation",
|
|
257
306
|
"moving",
|
|
307
|
+
"movers",
|
|
258
308
|
"painting",
|
|
309
|
+
"painter",
|
|
259
310
|
"pest_control",
|
|
260
311
|
"plumbing",
|
|
312
|
+
"pressure_washing",
|
|
261
313
|
"remodeling",
|
|
314
|
+
"remodeler",
|
|
315
|
+
"restoration",
|
|
262
316
|
"roofing",
|
|
317
|
+
"roofer",
|
|
318
|
+
"siding",
|
|
319
|
+
"tree_services",
|
|
320
|
+
"wildlife_control",
|
|
263
321
|
"window_cleaning",
|
|
322
|
+
"window_installation",
|
|
323
|
+
"windows_doors",
|
|
264
324
|
"other"
|
|
265
325
|
]
|
|
266
326
|
},
|
|
267
327
|
serviceType: {
|
|
268
328
|
type: "string",
|
|
269
|
-
enum: ["
|
|
329
|
+
enum: ["CLEANING", "INSPECTION", "INSTALLATION", "MAINTENANCE", "REPAIR", "TREATMENT", "OTHER"]
|
|
270
330
|
},
|
|
271
331
|
urgency: {
|
|
272
332
|
type: "string",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnalyzeLead.js","sourceRoot":"","sources":["../../src/prompts/AnalyzeLead.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"AnalyzeLead.js","sourceRoot":"","sources":["../../src/prompts/AnalyzeLead.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.69.0",
|
|
8
8
|
"description": "Generative AI Service",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"@types/lodash": "4.17.20",
|
|
20
20
|
"@xapp/config": "0.2.3",
|
|
21
21
|
"chai": "4.5.0",
|
|
22
|
-
"dotenv": "17.2.
|
|
22
|
+
"dotenv": "17.2.1",
|
|
23
23
|
"mocha": "11.7.1",
|
|
24
|
-
"stentor-logger": "1.
|
|
25
|
-
"stentor-models": "1.
|
|
26
|
-
"stentor-service-fetch": "1.
|
|
27
|
-
"stentor-utils": "1.
|
|
24
|
+
"stentor-logger": "1.61.8",
|
|
25
|
+
"stentor-models": "1.61.7",
|
|
26
|
+
"stentor-service-fetch": "1.61.7",
|
|
27
|
+
"stentor-utils": "1.61.8",
|
|
28
28
|
"ts-node": "10.9.2",
|
|
29
|
-
"typescript": "5.
|
|
29
|
+
"typescript": "5.9.2"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@xapp/arachne-utils": "1.9.2",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\"",
|
|
45
45
|
"ftest": "mocha --recursive -r ts-node/register \"./src/**/*.ftest.ts\""
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "36e759bf3505db8fa9b001e1ea555db31f274133"
|
|
48
48
|
}
|