promptopskit 0.4.0 → 0.5.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.
- package/README.md +98 -57
- package/SKILL.md +360 -6
- package/dist/chunk-6BOUQVSX.js +130 -0
- package/dist/chunk-6BOUQVSX.js.map +1 -0
- package/dist/{chunk-F6UJ73Y6.js → chunk-6VLKZCNS.js} +6 -4
- package/dist/chunk-6VLKZCNS.js.map +1 -0
- package/dist/{chunk-HWEVRBKZ.js → chunk-AGTGIZMR.js} +6 -2
- package/dist/chunk-AGTGIZMR.js.map +1 -0
- package/dist/{chunk-L2V7LDKD.js → chunk-D75HKF64.js} +6 -4
- package/dist/chunk-D75HKF64.js.map +1 -0
- package/dist/{chunk-UPTCSWK3.js → chunk-IN4KT5EU.js} +4 -3
- package/dist/chunk-IN4KT5EU.js.map +1 -0
- package/dist/{chunk-JBLUPKY4.js → chunk-K6ZU3CGV.js} +54 -6
- package/dist/chunk-K6ZU3CGV.js.map +1 -0
- package/dist/{chunk-XNNDGDPI.js → chunk-KN7H4JRK.js} +61 -4
- package/dist/chunk-KN7H4JRK.js.map +1 -0
- package/dist/{chunk-HLNVKKMS.js → chunk-LNGHGGJN.js} +6 -4
- package/dist/chunk-LNGHGGJN.js.map +1 -0
- package/dist/{chunk-RY5DVTLV.js → chunk-QK3WKE3K.js} +6 -4
- package/dist/chunk-QK3WKE3K.js.map +1 -0
- package/dist/cli/index.js +114 -55
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +265 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -9
- package/dist/index.d.ts +9 -9
- package/dist/index.js +32 -10
- package/dist/index.js.map +1 -1
- package/dist/providers/anthropic.cjs +114 -9
- package/dist/providers/anthropic.cjs.map +1 -1
- package/dist/providers/anthropic.d.cts +2 -2
- package/dist/providers/anthropic.d.ts +2 -2
- package/dist/providers/anthropic.js +3 -3
- package/dist/providers/gemini.cjs +114 -9
- package/dist/providers/gemini.cjs.map +1 -1
- package/dist/providers/gemini.d.cts +2 -2
- package/dist/providers/gemini.d.ts +2 -2
- package/dist/providers/gemini.js +3 -3
- package/dist/providers/llmasaservice.cjs +1467 -0
- package/dist/providers/llmasaservice.cjs.map +1 -0
- package/dist/providers/llmasaservice.d.cts +28 -0
- package/dist/providers/llmasaservice.d.ts +28 -0
- package/dist/providers/llmasaservice.js +20 -0
- package/dist/providers/llmasaservice.js.map +1 -0
- package/dist/providers/openai-responses.cjs +114 -9
- package/dist/providers/openai-responses.cjs.map +1 -1
- package/dist/providers/openai-responses.d.cts +2 -2
- package/dist/providers/openai-responses.d.ts +2 -2
- package/dist/providers/openai-responses.js +3 -3
- package/dist/providers/openai.cjs +114 -9
- package/dist/providers/openai.cjs.map +1 -1
- package/dist/providers/openai.d.cts +2 -2
- package/dist/providers/openai.d.ts +2 -2
- package/dist/providers/openai.js +3 -3
- package/dist/providers/openrouter.cjs +115 -9
- package/dist/providers/openrouter.cjs.map +1 -1
- package/dist/providers/openrouter.d.cts +2 -2
- package/dist/providers/openrouter.d.ts +2 -2
- package/dist/providers/openrouter.js +4 -4
- package/dist/{schema-B9A1zLRk.d.cts → schema-D-RI4w-k.d.cts} +695 -183
- package/dist/{schema-B9A1zLRk.d.ts → schema-D-RI4w-k.d.ts} +695 -183
- package/dist/testing.cjs +21 -4
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +1 -1
- package/dist/{types-DjGAwJxC.d.ts → types-B3dxBGu6.d.ts} +18 -6
- package/dist/{types-DpbzzZO2.d.cts → types-DbTAjlTN.d.cts} +18 -6
- package/dist/usagetap/index.cjs +6 -1
- package/dist/usagetap/index.cjs.map +1 -1
- package/dist/usagetap/index.d.cts +4 -3
- package/dist/usagetap/index.d.ts +4 -3
- package/dist/usagetap/index.js +3 -1
- package/package.json +11 -1
- package/dist/chunk-F6UJ73Y6.js.map +0 -1
- package/dist/chunk-HLNVKKMS.js.map +0 -1
- package/dist/chunk-HWEVRBKZ.js.map +0 -1
- package/dist/chunk-JBLUPKY4.js.map +0 -1
- package/dist/chunk-L2V7LDKD.js.map +0 -1
- package/dist/chunk-RY5DVTLV.js.map +0 -1
- package/dist/chunk-UPTCSWK3.js.map +0 -1
- package/dist/chunk-XNNDGDPI.js.map +0 -1
|
@@ -105,10 +105,6 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
105
105
|
cached_content?: string | undefined;
|
|
106
106
|
}>>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
|
-
openai?: {
|
|
109
|
-
prompt_cache_key?: string | undefined;
|
|
110
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
111
|
-
} | undefined;
|
|
112
108
|
anthropic?: {
|
|
113
109
|
type?: "ephemeral" | undefined;
|
|
114
110
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -120,14 +116,14 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
120
116
|
gemini?: {
|
|
121
117
|
cached_content?: string | undefined;
|
|
122
118
|
} | undefined;
|
|
123
|
-
google?: {
|
|
124
|
-
cached_content?: string | undefined;
|
|
125
|
-
} | undefined;
|
|
126
|
-
}, {
|
|
127
119
|
openai?: {
|
|
128
120
|
prompt_cache_key?: string | undefined;
|
|
129
121
|
retention?: "in_memory" | "24h" | undefined;
|
|
130
122
|
} | undefined;
|
|
123
|
+
google?: {
|
|
124
|
+
cached_content?: string | undefined;
|
|
125
|
+
} | undefined;
|
|
126
|
+
}, {
|
|
131
127
|
anthropic?: {
|
|
132
128
|
type?: "ephemeral" | undefined;
|
|
133
129
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -139,6 +135,10 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
139
135
|
gemini?: {
|
|
140
136
|
cached_content?: string | undefined;
|
|
141
137
|
} | undefined;
|
|
138
|
+
openai?: {
|
|
139
|
+
prompt_cache_key?: string | undefined;
|
|
140
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
141
|
+
} | undefined;
|
|
142
142
|
google?: {
|
|
143
143
|
cached_content?: string | undefined;
|
|
144
144
|
} | undefined;
|
|
@@ -151,22 +151,25 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
151
151
|
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
152
152
|
google: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
153
153
|
openrouter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
154
|
+
llmasaservice: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
154
155
|
}, "strip", z.ZodTypeAny, {
|
|
155
|
-
openai?: Record<string, unknown> | undefined;
|
|
156
156
|
anthropic?: Record<string, unknown> | undefined;
|
|
157
157
|
gemini?: Record<string, unknown> | undefined;
|
|
158
|
-
|
|
158
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
159
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
160
|
+
openai?: Record<string, unknown> | undefined;
|
|
159
161
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
160
162
|
openai_responses?: Record<string, unknown> | undefined;
|
|
161
|
-
|
|
163
|
+
google?: Record<string, unknown> | undefined;
|
|
162
164
|
}, {
|
|
163
|
-
openai?: Record<string, unknown> | undefined;
|
|
164
165
|
anthropic?: Record<string, unknown> | undefined;
|
|
165
166
|
gemini?: Record<string, unknown> | undefined;
|
|
166
|
-
|
|
167
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
168
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
169
|
+
openai?: Record<string, unknown> | undefined;
|
|
167
170
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
168
171
|
openai_responses?: Record<string, unknown> | undefined;
|
|
169
|
-
|
|
172
|
+
google?: Record<string, unknown> | undefined;
|
|
170
173
|
}>>;
|
|
171
174
|
tools: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
172
175
|
name: z.ZodString;
|
|
@@ -236,6 +239,58 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
236
239
|
plugins?: Record<string, unknown>[] | undefined;
|
|
237
240
|
models?: string[] | undefined;
|
|
238
241
|
}>>;
|
|
242
|
+
llmasaservice: z.ZodOptional<z.ZodObject<{
|
|
243
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
244
|
+
project_id: z.ZodOptional<z.ZodString>;
|
|
245
|
+
customer: z.ZodOptional<z.ZodObject<{
|
|
246
|
+
customer_id: z.ZodString;
|
|
247
|
+
customer_name: z.ZodOptional<z.ZodString>;
|
|
248
|
+
customer_user_id: z.ZodOptional<z.ZodString>;
|
|
249
|
+
customer_user_name: z.ZodOptional<z.ZodString>;
|
|
250
|
+
customer_user_email: z.ZodOptional<z.ZodString>;
|
|
251
|
+
}, "strip", z.ZodTypeAny, {
|
|
252
|
+
customer_id: string;
|
|
253
|
+
customer_name?: string | undefined;
|
|
254
|
+
customer_user_id?: string | undefined;
|
|
255
|
+
customer_user_name?: string | undefined;
|
|
256
|
+
customer_user_email?: string | undefined;
|
|
257
|
+
}, {
|
|
258
|
+
customer_id: string;
|
|
259
|
+
customer_name?: string | undefined;
|
|
260
|
+
customer_user_id?: string | undefined;
|
|
261
|
+
customer_user_name?: string | undefined;
|
|
262
|
+
customer_user_email?: string | undefined;
|
|
263
|
+
}>>;
|
|
264
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
265
|
+
conversationTitle: z.ZodOptional<z.ZodString>;
|
|
266
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
267
|
+
}, "strip", z.ZodTypeAny, {
|
|
268
|
+
base_url?: string | undefined;
|
|
269
|
+
project_id?: string | undefined;
|
|
270
|
+
customer?: {
|
|
271
|
+
customer_id: string;
|
|
272
|
+
customer_name?: string | undefined;
|
|
273
|
+
customer_user_id?: string | undefined;
|
|
274
|
+
customer_user_name?: string | undefined;
|
|
275
|
+
customer_user_email?: string | undefined;
|
|
276
|
+
} | undefined;
|
|
277
|
+
conversationId?: string | undefined;
|
|
278
|
+
conversationTitle?: string | undefined;
|
|
279
|
+
projectId?: string | undefined;
|
|
280
|
+
}, {
|
|
281
|
+
base_url?: string | undefined;
|
|
282
|
+
project_id?: string | undefined;
|
|
283
|
+
customer?: {
|
|
284
|
+
customer_id: string;
|
|
285
|
+
customer_name?: string | undefined;
|
|
286
|
+
customer_user_id?: string | undefined;
|
|
287
|
+
customer_user_name?: string | undefined;
|
|
288
|
+
customer_user_email?: string | undefined;
|
|
289
|
+
} | undefined;
|
|
290
|
+
conversationId?: string | undefined;
|
|
291
|
+
conversationTitle?: string | undefined;
|
|
292
|
+
projectId?: string | undefined;
|
|
293
|
+
}>>;
|
|
239
294
|
}, "strip", z.ZodTypeAny, {
|
|
240
295
|
anthropic?: {
|
|
241
296
|
top_k?: number | undefined;
|
|
@@ -257,6 +312,20 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
257
312
|
plugins?: Record<string, unknown>[] | undefined;
|
|
258
313
|
models?: string[] | undefined;
|
|
259
314
|
} | undefined;
|
|
315
|
+
llmasaservice?: {
|
|
316
|
+
base_url?: string | undefined;
|
|
317
|
+
project_id?: string | undefined;
|
|
318
|
+
customer?: {
|
|
319
|
+
customer_id: string;
|
|
320
|
+
customer_name?: string | undefined;
|
|
321
|
+
customer_user_id?: string | undefined;
|
|
322
|
+
customer_user_name?: string | undefined;
|
|
323
|
+
customer_user_email?: string | undefined;
|
|
324
|
+
} | undefined;
|
|
325
|
+
conversationId?: string | undefined;
|
|
326
|
+
conversationTitle?: string | undefined;
|
|
327
|
+
projectId?: string | undefined;
|
|
328
|
+
} | undefined;
|
|
260
329
|
}, {
|
|
261
330
|
anthropic?: {
|
|
262
331
|
top_k?: number | undefined;
|
|
@@ -278,6 +347,20 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
278
347
|
plugins?: Record<string, unknown>[] | undefined;
|
|
279
348
|
models?: string[] | undefined;
|
|
280
349
|
} | undefined;
|
|
350
|
+
llmasaservice?: {
|
|
351
|
+
base_url?: string | undefined;
|
|
352
|
+
project_id?: string | undefined;
|
|
353
|
+
customer?: {
|
|
354
|
+
customer_id: string;
|
|
355
|
+
customer_name?: string | undefined;
|
|
356
|
+
customer_user_id?: string | undefined;
|
|
357
|
+
customer_user_name?: string | undefined;
|
|
358
|
+
customer_user_email?: string | undefined;
|
|
359
|
+
} | undefined;
|
|
360
|
+
conversationId?: string | undefined;
|
|
361
|
+
conversationTitle?: string | undefined;
|
|
362
|
+
projectId?: string | undefined;
|
|
363
|
+
} | undefined;
|
|
281
364
|
}>>;
|
|
282
365
|
}, "strip", z.ZodTypeAny, {
|
|
283
366
|
model?: string | undefined;
|
|
@@ -303,10 +386,6 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
303
386
|
schema_strict?: boolean | undefined;
|
|
304
387
|
} | undefined;
|
|
305
388
|
cache?: {
|
|
306
|
-
openai?: {
|
|
307
|
-
prompt_cache_key?: string | undefined;
|
|
308
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
309
|
-
} | undefined;
|
|
310
389
|
anthropic?: {
|
|
311
390
|
type?: "ephemeral" | undefined;
|
|
312
391
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -318,18 +397,23 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
318
397
|
gemini?: {
|
|
319
398
|
cached_content?: string | undefined;
|
|
320
399
|
} | undefined;
|
|
400
|
+
openai?: {
|
|
401
|
+
prompt_cache_key?: string | undefined;
|
|
402
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
403
|
+
} | undefined;
|
|
321
404
|
google?: {
|
|
322
405
|
cached_content?: string | undefined;
|
|
323
406
|
} | undefined;
|
|
324
407
|
} | undefined;
|
|
325
408
|
raw?: {
|
|
326
|
-
openai?: Record<string, unknown> | undefined;
|
|
327
409
|
anthropic?: Record<string, unknown> | undefined;
|
|
328
410
|
gemini?: Record<string, unknown> | undefined;
|
|
329
|
-
|
|
411
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
412
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
413
|
+
openai?: Record<string, unknown> | undefined;
|
|
330
414
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
331
415
|
openai_responses?: Record<string, unknown> | undefined;
|
|
332
|
-
|
|
416
|
+
google?: Record<string, unknown> | undefined;
|
|
333
417
|
} | undefined;
|
|
334
418
|
tools?: (string | {
|
|
335
419
|
name: string;
|
|
@@ -357,6 +441,20 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
357
441
|
plugins?: Record<string, unknown>[] | undefined;
|
|
358
442
|
models?: string[] | undefined;
|
|
359
443
|
} | undefined;
|
|
444
|
+
llmasaservice?: {
|
|
445
|
+
base_url?: string | undefined;
|
|
446
|
+
project_id?: string | undefined;
|
|
447
|
+
customer?: {
|
|
448
|
+
customer_id: string;
|
|
449
|
+
customer_name?: string | undefined;
|
|
450
|
+
customer_user_id?: string | undefined;
|
|
451
|
+
customer_user_name?: string | undefined;
|
|
452
|
+
customer_user_email?: string | undefined;
|
|
453
|
+
} | undefined;
|
|
454
|
+
conversationId?: string | undefined;
|
|
455
|
+
conversationTitle?: string | undefined;
|
|
456
|
+
projectId?: string | undefined;
|
|
457
|
+
} | undefined;
|
|
360
458
|
} | undefined;
|
|
361
459
|
}, {
|
|
362
460
|
model?: string | undefined;
|
|
@@ -382,10 +480,6 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
382
480
|
schema_strict?: boolean | undefined;
|
|
383
481
|
} | undefined;
|
|
384
482
|
cache?: {
|
|
385
|
-
openai?: {
|
|
386
|
-
prompt_cache_key?: string | undefined;
|
|
387
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
388
|
-
} | undefined;
|
|
389
483
|
anthropic?: {
|
|
390
484
|
type?: "ephemeral" | undefined;
|
|
391
485
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -397,18 +491,23 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
397
491
|
gemini?: {
|
|
398
492
|
cached_content?: string | undefined;
|
|
399
493
|
} | undefined;
|
|
494
|
+
openai?: {
|
|
495
|
+
prompt_cache_key?: string | undefined;
|
|
496
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
497
|
+
} | undefined;
|
|
400
498
|
google?: {
|
|
401
499
|
cached_content?: string | undefined;
|
|
402
500
|
} | undefined;
|
|
403
501
|
} | undefined;
|
|
404
502
|
raw?: {
|
|
405
|
-
openai?: Record<string, unknown> | undefined;
|
|
406
503
|
anthropic?: Record<string, unknown> | undefined;
|
|
407
504
|
gemini?: Record<string, unknown> | undefined;
|
|
408
|
-
|
|
505
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
506
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
507
|
+
openai?: Record<string, unknown> | undefined;
|
|
409
508
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
410
509
|
openai_responses?: Record<string, unknown> | undefined;
|
|
411
|
-
|
|
510
|
+
google?: Record<string, unknown> | undefined;
|
|
412
511
|
} | undefined;
|
|
413
512
|
tools?: (string | {
|
|
414
513
|
name: string;
|
|
@@ -436,6 +535,20 @@ declare const PromptAssetOverridesSchema: z.ZodObject<{
|
|
|
436
535
|
plugins?: Record<string, unknown>[] | undefined;
|
|
437
536
|
models?: string[] | undefined;
|
|
438
537
|
} | undefined;
|
|
538
|
+
llmasaservice?: {
|
|
539
|
+
base_url?: string | undefined;
|
|
540
|
+
project_id?: string | undefined;
|
|
541
|
+
customer?: {
|
|
542
|
+
customer_id: string;
|
|
543
|
+
customer_name?: string | undefined;
|
|
544
|
+
customer_user_id?: string | undefined;
|
|
545
|
+
customer_user_name?: string | undefined;
|
|
546
|
+
customer_user_email?: string | undefined;
|
|
547
|
+
} | undefined;
|
|
548
|
+
conversationId?: string | undefined;
|
|
549
|
+
conversationTitle?: string | undefined;
|
|
550
|
+
projectId?: string | undefined;
|
|
551
|
+
} | undefined;
|
|
439
552
|
} | undefined;
|
|
440
553
|
}>;
|
|
441
554
|
type PromptAssetOverrides = z.infer<typeof PromptAssetOverridesSchema>;
|
|
@@ -443,7 +556,7 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
443
556
|
id: z.ZodString;
|
|
444
557
|
schema_version: z.ZodDefault<z.ZodNumber>;
|
|
445
558
|
description: z.ZodOptional<z.ZodString>;
|
|
446
|
-
provider: z.ZodOptional<z.ZodEnum<["openai", "openai-responses", "anthropic", "google", "gemini", "openrouter", "any"]>>;
|
|
559
|
+
provider: z.ZodOptional<z.ZodEnum<["openai", "openai-responses", "anthropic", "google", "gemini", "openrouter", "llmasaservice", "any"]>>;
|
|
447
560
|
model: z.ZodOptional<z.ZodString>;
|
|
448
561
|
fallback_models: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
449
562
|
reasoning: z.ZodOptional<z.ZodObject<{
|
|
@@ -548,10 +661,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
548
661
|
cached_content?: string | undefined;
|
|
549
662
|
}>>;
|
|
550
663
|
}, "strip", z.ZodTypeAny, {
|
|
551
|
-
openai?: {
|
|
552
|
-
prompt_cache_key?: string | undefined;
|
|
553
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
554
|
-
} | undefined;
|
|
555
664
|
anthropic?: {
|
|
556
665
|
type?: "ephemeral" | undefined;
|
|
557
666
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -563,14 +672,14 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
563
672
|
gemini?: {
|
|
564
673
|
cached_content?: string | undefined;
|
|
565
674
|
} | undefined;
|
|
566
|
-
google?: {
|
|
567
|
-
cached_content?: string | undefined;
|
|
568
|
-
} | undefined;
|
|
569
|
-
}, {
|
|
570
675
|
openai?: {
|
|
571
676
|
prompt_cache_key?: string | undefined;
|
|
572
677
|
retention?: "in_memory" | "24h" | undefined;
|
|
573
678
|
} | undefined;
|
|
679
|
+
google?: {
|
|
680
|
+
cached_content?: string | undefined;
|
|
681
|
+
} | undefined;
|
|
682
|
+
}, {
|
|
574
683
|
anthropic?: {
|
|
575
684
|
type?: "ephemeral" | undefined;
|
|
576
685
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -582,6 +691,10 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
582
691
|
gemini?: {
|
|
583
692
|
cached_content?: string | undefined;
|
|
584
693
|
} | undefined;
|
|
694
|
+
openai?: {
|
|
695
|
+
prompt_cache_key?: string | undefined;
|
|
696
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
697
|
+
} | undefined;
|
|
585
698
|
google?: {
|
|
586
699
|
cached_content?: string | undefined;
|
|
587
700
|
} | undefined;
|
|
@@ -594,22 +707,25 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
594
707
|
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
595
708
|
google: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
596
709
|
openrouter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
710
|
+
llmasaservice: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
597
711
|
}, "strip", z.ZodTypeAny, {
|
|
598
|
-
openai?: Record<string, unknown> | undefined;
|
|
599
712
|
anthropic?: Record<string, unknown> | undefined;
|
|
600
713
|
gemini?: Record<string, unknown> | undefined;
|
|
601
|
-
|
|
714
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
715
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
716
|
+
openai?: Record<string, unknown> | undefined;
|
|
602
717
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
603
718
|
openai_responses?: Record<string, unknown> | undefined;
|
|
604
|
-
|
|
719
|
+
google?: Record<string, unknown> | undefined;
|
|
605
720
|
}, {
|
|
606
|
-
openai?: Record<string, unknown> | undefined;
|
|
607
721
|
anthropic?: Record<string, unknown> | undefined;
|
|
608
722
|
gemini?: Record<string, unknown> | undefined;
|
|
609
|
-
|
|
723
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
724
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
725
|
+
openai?: Record<string, unknown> | undefined;
|
|
610
726
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
611
727
|
openai_responses?: Record<string, unknown> | undefined;
|
|
612
|
-
|
|
728
|
+
google?: Record<string, unknown> | undefined;
|
|
613
729
|
}>>;
|
|
614
730
|
tools: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
615
731
|
name: z.ZodString;
|
|
@@ -679,6 +795,58 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
679
795
|
plugins?: Record<string, unknown>[] | undefined;
|
|
680
796
|
models?: string[] | undefined;
|
|
681
797
|
}>>;
|
|
798
|
+
llmasaservice: z.ZodOptional<z.ZodObject<{
|
|
799
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
800
|
+
project_id: z.ZodOptional<z.ZodString>;
|
|
801
|
+
customer: z.ZodOptional<z.ZodObject<{
|
|
802
|
+
customer_id: z.ZodString;
|
|
803
|
+
customer_name: z.ZodOptional<z.ZodString>;
|
|
804
|
+
customer_user_id: z.ZodOptional<z.ZodString>;
|
|
805
|
+
customer_user_name: z.ZodOptional<z.ZodString>;
|
|
806
|
+
customer_user_email: z.ZodOptional<z.ZodString>;
|
|
807
|
+
}, "strip", z.ZodTypeAny, {
|
|
808
|
+
customer_id: string;
|
|
809
|
+
customer_name?: string | undefined;
|
|
810
|
+
customer_user_id?: string | undefined;
|
|
811
|
+
customer_user_name?: string | undefined;
|
|
812
|
+
customer_user_email?: string | undefined;
|
|
813
|
+
}, {
|
|
814
|
+
customer_id: string;
|
|
815
|
+
customer_name?: string | undefined;
|
|
816
|
+
customer_user_id?: string | undefined;
|
|
817
|
+
customer_user_name?: string | undefined;
|
|
818
|
+
customer_user_email?: string | undefined;
|
|
819
|
+
}>>;
|
|
820
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
821
|
+
conversationTitle: z.ZodOptional<z.ZodString>;
|
|
822
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
823
|
+
}, "strip", z.ZodTypeAny, {
|
|
824
|
+
base_url?: string | undefined;
|
|
825
|
+
project_id?: string | undefined;
|
|
826
|
+
customer?: {
|
|
827
|
+
customer_id: string;
|
|
828
|
+
customer_name?: string | undefined;
|
|
829
|
+
customer_user_id?: string | undefined;
|
|
830
|
+
customer_user_name?: string | undefined;
|
|
831
|
+
customer_user_email?: string | undefined;
|
|
832
|
+
} | undefined;
|
|
833
|
+
conversationId?: string | undefined;
|
|
834
|
+
conversationTitle?: string | undefined;
|
|
835
|
+
projectId?: string | undefined;
|
|
836
|
+
}, {
|
|
837
|
+
base_url?: string | undefined;
|
|
838
|
+
project_id?: string | undefined;
|
|
839
|
+
customer?: {
|
|
840
|
+
customer_id: string;
|
|
841
|
+
customer_name?: string | undefined;
|
|
842
|
+
customer_user_id?: string | undefined;
|
|
843
|
+
customer_user_name?: string | undefined;
|
|
844
|
+
customer_user_email?: string | undefined;
|
|
845
|
+
} | undefined;
|
|
846
|
+
conversationId?: string | undefined;
|
|
847
|
+
conversationTitle?: string | undefined;
|
|
848
|
+
projectId?: string | undefined;
|
|
849
|
+
}>>;
|
|
682
850
|
}, "strip", z.ZodTypeAny, {
|
|
683
851
|
anthropic?: {
|
|
684
852
|
top_k?: number | undefined;
|
|
@@ -700,6 +868,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
700
868
|
plugins?: Record<string, unknown>[] | undefined;
|
|
701
869
|
models?: string[] | undefined;
|
|
702
870
|
} | undefined;
|
|
871
|
+
llmasaservice?: {
|
|
872
|
+
base_url?: string | undefined;
|
|
873
|
+
project_id?: string | undefined;
|
|
874
|
+
customer?: {
|
|
875
|
+
customer_id: string;
|
|
876
|
+
customer_name?: string | undefined;
|
|
877
|
+
customer_user_id?: string | undefined;
|
|
878
|
+
customer_user_name?: string | undefined;
|
|
879
|
+
customer_user_email?: string | undefined;
|
|
880
|
+
} | undefined;
|
|
881
|
+
conversationId?: string | undefined;
|
|
882
|
+
conversationTitle?: string | undefined;
|
|
883
|
+
projectId?: string | undefined;
|
|
884
|
+
} | undefined;
|
|
703
885
|
}, {
|
|
704
886
|
anthropic?: {
|
|
705
887
|
top_k?: number | undefined;
|
|
@@ -721,6 +903,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
721
903
|
plugins?: Record<string, unknown>[] | undefined;
|
|
722
904
|
models?: string[] | undefined;
|
|
723
905
|
} | undefined;
|
|
906
|
+
llmasaservice?: {
|
|
907
|
+
base_url?: string | undefined;
|
|
908
|
+
project_id?: string | undefined;
|
|
909
|
+
customer?: {
|
|
910
|
+
customer_id: string;
|
|
911
|
+
customer_name?: string | undefined;
|
|
912
|
+
customer_user_id?: string | undefined;
|
|
913
|
+
customer_user_name?: string | undefined;
|
|
914
|
+
customer_user_email?: string | undefined;
|
|
915
|
+
} | undefined;
|
|
916
|
+
conversationId?: string | undefined;
|
|
917
|
+
conversationTitle?: string | undefined;
|
|
918
|
+
projectId?: string | undefined;
|
|
919
|
+
} | undefined;
|
|
724
920
|
}>>;
|
|
725
921
|
mcp: z.ZodOptional<z.ZodObject<{
|
|
726
922
|
servers: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -838,9 +1034,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
838
1034
|
max_items?: number | undefined;
|
|
839
1035
|
}>>;
|
|
840
1036
|
}, "strip", z.ZodTypeAny, {
|
|
841
|
-
history?: {
|
|
842
|
-
max_items?: number | undefined;
|
|
843
|
-
} | undefined;
|
|
844
1037
|
inputs?: (string | {
|
|
845
1038
|
name: string;
|
|
846
1039
|
max_size?: number | undefined;
|
|
@@ -862,10 +1055,10 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
862
1055
|
return_message?: string | undefined;
|
|
863
1056
|
} | undefined;
|
|
864
1057
|
})[] | undefined;
|
|
865
|
-
}, {
|
|
866
1058
|
history?: {
|
|
867
1059
|
max_items?: number | undefined;
|
|
868
1060
|
} | undefined;
|
|
1061
|
+
}, {
|
|
869
1062
|
inputs?: (string | {
|
|
870
1063
|
name: string;
|
|
871
1064
|
max_size?: number | undefined;
|
|
@@ -887,6 +1080,9 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
887
1080
|
return_message?: string | undefined;
|
|
888
1081
|
} | undefined;
|
|
889
1082
|
})[] | undefined;
|
|
1083
|
+
history?: {
|
|
1084
|
+
max_items?: number | undefined;
|
|
1085
|
+
} | undefined;
|
|
890
1086
|
}>>;
|
|
891
1087
|
includes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
892
1088
|
environments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -994,10 +1190,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
994
1190
|
cached_content?: string | undefined;
|
|
995
1191
|
}>>;
|
|
996
1192
|
}, "strip", z.ZodTypeAny, {
|
|
997
|
-
openai?: {
|
|
998
|
-
prompt_cache_key?: string | undefined;
|
|
999
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1000
|
-
} | undefined;
|
|
1001
1193
|
anthropic?: {
|
|
1002
1194
|
type?: "ephemeral" | undefined;
|
|
1003
1195
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1009,14 +1201,14 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1009
1201
|
gemini?: {
|
|
1010
1202
|
cached_content?: string | undefined;
|
|
1011
1203
|
} | undefined;
|
|
1012
|
-
google?: {
|
|
1013
|
-
cached_content?: string | undefined;
|
|
1014
|
-
} | undefined;
|
|
1015
|
-
}, {
|
|
1016
1204
|
openai?: {
|
|
1017
1205
|
prompt_cache_key?: string | undefined;
|
|
1018
1206
|
retention?: "in_memory" | "24h" | undefined;
|
|
1019
1207
|
} | undefined;
|
|
1208
|
+
google?: {
|
|
1209
|
+
cached_content?: string | undefined;
|
|
1210
|
+
} | undefined;
|
|
1211
|
+
}, {
|
|
1020
1212
|
anthropic?: {
|
|
1021
1213
|
type?: "ephemeral" | undefined;
|
|
1022
1214
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1028,6 +1220,10 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1028
1220
|
gemini?: {
|
|
1029
1221
|
cached_content?: string | undefined;
|
|
1030
1222
|
} | undefined;
|
|
1223
|
+
openai?: {
|
|
1224
|
+
prompt_cache_key?: string | undefined;
|
|
1225
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
1226
|
+
} | undefined;
|
|
1031
1227
|
google?: {
|
|
1032
1228
|
cached_content?: string | undefined;
|
|
1033
1229
|
} | undefined;
|
|
@@ -1040,22 +1236,25 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1040
1236
|
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1041
1237
|
google: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1042
1238
|
openrouter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1239
|
+
llmasaservice: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1043
1240
|
}, "strip", z.ZodTypeAny, {
|
|
1044
|
-
openai?: Record<string, unknown> | undefined;
|
|
1045
1241
|
anthropic?: Record<string, unknown> | undefined;
|
|
1046
1242
|
gemini?: Record<string, unknown> | undefined;
|
|
1047
|
-
|
|
1243
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
1244
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
1245
|
+
openai?: Record<string, unknown> | undefined;
|
|
1048
1246
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1049
1247
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1050
|
-
|
|
1248
|
+
google?: Record<string, unknown> | undefined;
|
|
1051
1249
|
}, {
|
|
1052
|
-
openai?: Record<string, unknown> | undefined;
|
|
1053
1250
|
anthropic?: Record<string, unknown> | undefined;
|
|
1054
1251
|
gemini?: Record<string, unknown> | undefined;
|
|
1055
|
-
|
|
1252
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
1253
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
1254
|
+
openai?: Record<string, unknown> | undefined;
|
|
1056
1255
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1057
1256
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1058
|
-
|
|
1257
|
+
google?: Record<string, unknown> | undefined;
|
|
1059
1258
|
}>>;
|
|
1060
1259
|
tools: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1061
1260
|
name: z.ZodString;
|
|
@@ -1125,6 +1324,58 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1125
1324
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1126
1325
|
models?: string[] | undefined;
|
|
1127
1326
|
}>>;
|
|
1327
|
+
llmasaservice: z.ZodOptional<z.ZodObject<{
|
|
1328
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
1329
|
+
project_id: z.ZodOptional<z.ZodString>;
|
|
1330
|
+
customer: z.ZodOptional<z.ZodObject<{
|
|
1331
|
+
customer_id: z.ZodString;
|
|
1332
|
+
customer_name: z.ZodOptional<z.ZodString>;
|
|
1333
|
+
customer_user_id: z.ZodOptional<z.ZodString>;
|
|
1334
|
+
customer_user_name: z.ZodOptional<z.ZodString>;
|
|
1335
|
+
customer_user_email: z.ZodOptional<z.ZodString>;
|
|
1336
|
+
}, "strip", z.ZodTypeAny, {
|
|
1337
|
+
customer_id: string;
|
|
1338
|
+
customer_name?: string | undefined;
|
|
1339
|
+
customer_user_id?: string | undefined;
|
|
1340
|
+
customer_user_name?: string | undefined;
|
|
1341
|
+
customer_user_email?: string | undefined;
|
|
1342
|
+
}, {
|
|
1343
|
+
customer_id: string;
|
|
1344
|
+
customer_name?: string | undefined;
|
|
1345
|
+
customer_user_id?: string | undefined;
|
|
1346
|
+
customer_user_name?: string | undefined;
|
|
1347
|
+
customer_user_email?: string | undefined;
|
|
1348
|
+
}>>;
|
|
1349
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
1350
|
+
conversationTitle: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
}, "strip", z.ZodTypeAny, {
|
|
1353
|
+
base_url?: string | undefined;
|
|
1354
|
+
project_id?: string | undefined;
|
|
1355
|
+
customer?: {
|
|
1356
|
+
customer_id: string;
|
|
1357
|
+
customer_name?: string | undefined;
|
|
1358
|
+
customer_user_id?: string | undefined;
|
|
1359
|
+
customer_user_name?: string | undefined;
|
|
1360
|
+
customer_user_email?: string | undefined;
|
|
1361
|
+
} | undefined;
|
|
1362
|
+
conversationId?: string | undefined;
|
|
1363
|
+
conversationTitle?: string | undefined;
|
|
1364
|
+
projectId?: string | undefined;
|
|
1365
|
+
}, {
|
|
1366
|
+
base_url?: string | undefined;
|
|
1367
|
+
project_id?: string | undefined;
|
|
1368
|
+
customer?: {
|
|
1369
|
+
customer_id: string;
|
|
1370
|
+
customer_name?: string | undefined;
|
|
1371
|
+
customer_user_id?: string | undefined;
|
|
1372
|
+
customer_user_name?: string | undefined;
|
|
1373
|
+
customer_user_email?: string | undefined;
|
|
1374
|
+
} | undefined;
|
|
1375
|
+
conversationId?: string | undefined;
|
|
1376
|
+
conversationTitle?: string | undefined;
|
|
1377
|
+
projectId?: string | undefined;
|
|
1378
|
+
}>>;
|
|
1128
1379
|
}, "strip", z.ZodTypeAny, {
|
|
1129
1380
|
anthropic?: {
|
|
1130
1381
|
top_k?: number | undefined;
|
|
@@ -1146,6 +1397,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1146
1397
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1147
1398
|
models?: string[] | undefined;
|
|
1148
1399
|
} | undefined;
|
|
1400
|
+
llmasaservice?: {
|
|
1401
|
+
base_url?: string | undefined;
|
|
1402
|
+
project_id?: string | undefined;
|
|
1403
|
+
customer?: {
|
|
1404
|
+
customer_id: string;
|
|
1405
|
+
customer_name?: string | undefined;
|
|
1406
|
+
customer_user_id?: string | undefined;
|
|
1407
|
+
customer_user_name?: string | undefined;
|
|
1408
|
+
customer_user_email?: string | undefined;
|
|
1409
|
+
} | undefined;
|
|
1410
|
+
conversationId?: string | undefined;
|
|
1411
|
+
conversationTitle?: string | undefined;
|
|
1412
|
+
projectId?: string | undefined;
|
|
1413
|
+
} | undefined;
|
|
1149
1414
|
}, {
|
|
1150
1415
|
anthropic?: {
|
|
1151
1416
|
top_k?: number | undefined;
|
|
@@ -1167,6 +1432,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1167
1432
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1168
1433
|
models?: string[] | undefined;
|
|
1169
1434
|
} | undefined;
|
|
1435
|
+
llmasaservice?: {
|
|
1436
|
+
base_url?: string | undefined;
|
|
1437
|
+
project_id?: string | undefined;
|
|
1438
|
+
customer?: {
|
|
1439
|
+
customer_id: string;
|
|
1440
|
+
customer_name?: string | undefined;
|
|
1441
|
+
customer_user_id?: string | undefined;
|
|
1442
|
+
customer_user_name?: string | undefined;
|
|
1443
|
+
customer_user_email?: string | undefined;
|
|
1444
|
+
} | undefined;
|
|
1445
|
+
conversationId?: string | undefined;
|
|
1446
|
+
conversationTitle?: string | undefined;
|
|
1447
|
+
projectId?: string | undefined;
|
|
1448
|
+
} | undefined;
|
|
1170
1449
|
}>>;
|
|
1171
1450
|
}, "strip", z.ZodTypeAny, {
|
|
1172
1451
|
model?: string | undefined;
|
|
@@ -1192,10 +1471,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1192
1471
|
schema_strict?: boolean | undefined;
|
|
1193
1472
|
} | undefined;
|
|
1194
1473
|
cache?: {
|
|
1195
|
-
openai?: {
|
|
1196
|
-
prompt_cache_key?: string | undefined;
|
|
1197
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1198
|
-
} | undefined;
|
|
1199
1474
|
anthropic?: {
|
|
1200
1475
|
type?: "ephemeral" | undefined;
|
|
1201
1476
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1207,18 +1482,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1207
1482
|
gemini?: {
|
|
1208
1483
|
cached_content?: string | undefined;
|
|
1209
1484
|
} | undefined;
|
|
1485
|
+
openai?: {
|
|
1486
|
+
prompt_cache_key?: string | undefined;
|
|
1487
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
1488
|
+
} | undefined;
|
|
1210
1489
|
google?: {
|
|
1211
1490
|
cached_content?: string | undefined;
|
|
1212
1491
|
} | undefined;
|
|
1213
1492
|
} | undefined;
|
|
1214
1493
|
raw?: {
|
|
1215
|
-
openai?: Record<string, unknown> | undefined;
|
|
1216
1494
|
anthropic?: Record<string, unknown> | undefined;
|
|
1217
1495
|
gemini?: Record<string, unknown> | undefined;
|
|
1218
|
-
|
|
1496
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
1497
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
1498
|
+
openai?: Record<string, unknown> | undefined;
|
|
1219
1499
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1220
1500
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1221
|
-
|
|
1501
|
+
google?: Record<string, unknown> | undefined;
|
|
1222
1502
|
} | undefined;
|
|
1223
1503
|
tools?: (string | {
|
|
1224
1504
|
name: string;
|
|
@@ -1246,6 +1526,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1246
1526
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1247
1527
|
models?: string[] | undefined;
|
|
1248
1528
|
} | undefined;
|
|
1529
|
+
llmasaservice?: {
|
|
1530
|
+
base_url?: string | undefined;
|
|
1531
|
+
project_id?: string | undefined;
|
|
1532
|
+
customer?: {
|
|
1533
|
+
customer_id: string;
|
|
1534
|
+
customer_name?: string | undefined;
|
|
1535
|
+
customer_user_id?: string | undefined;
|
|
1536
|
+
customer_user_name?: string | undefined;
|
|
1537
|
+
customer_user_email?: string | undefined;
|
|
1538
|
+
} | undefined;
|
|
1539
|
+
conversationId?: string | undefined;
|
|
1540
|
+
conversationTitle?: string | undefined;
|
|
1541
|
+
projectId?: string | undefined;
|
|
1542
|
+
} | undefined;
|
|
1249
1543
|
} | undefined;
|
|
1250
1544
|
}, {
|
|
1251
1545
|
model?: string | undefined;
|
|
@@ -1271,10 +1565,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1271
1565
|
schema_strict?: boolean | undefined;
|
|
1272
1566
|
} | undefined;
|
|
1273
1567
|
cache?: {
|
|
1274
|
-
openai?: {
|
|
1275
|
-
prompt_cache_key?: string | undefined;
|
|
1276
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1277
|
-
} | undefined;
|
|
1278
1568
|
anthropic?: {
|
|
1279
1569
|
type?: "ephemeral" | undefined;
|
|
1280
1570
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1286,18 +1576,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1286
1576
|
gemini?: {
|
|
1287
1577
|
cached_content?: string | undefined;
|
|
1288
1578
|
} | undefined;
|
|
1579
|
+
openai?: {
|
|
1580
|
+
prompt_cache_key?: string | undefined;
|
|
1581
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
1582
|
+
} | undefined;
|
|
1289
1583
|
google?: {
|
|
1290
1584
|
cached_content?: string | undefined;
|
|
1291
1585
|
} | undefined;
|
|
1292
1586
|
} | undefined;
|
|
1293
1587
|
raw?: {
|
|
1294
|
-
openai?: Record<string, unknown> | undefined;
|
|
1295
1588
|
anthropic?: Record<string, unknown> | undefined;
|
|
1296
1589
|
gemini?: Record<string, unknown> | undefined;
|
|
1297
|
-
|
|
1590
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
1591
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
1592
|
+
openai?: Record<string, unknown> | undefined;
|
|
1298
1593
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1299
1594
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1300
|
-
|
|
1595
|
+
google?: Record<string, unknown> | undefined;
|
|
1301
1596
|
} | undefined;
|
|
1302
1597
|
tools?: (string | {
|
|
1303
1598
|
name: string;
|
|
@@ -1325,6 +1620,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1325
1620
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1326
1621
|
models?: string[] | undefined;
|
|
1327
1622
|
} | undefined;
|
|
1623
|
+
llmasaservice?: {
|
|
1624
|
+
base_url?: string | undefined;
|
|
1625
|
+
project_id?: string | undefined;
|
|
1626
|
+
customer?: {
|
|
1627
|
+
customer_id: string;
|
|
1628
|
+
customer_name?: string | undefined;
|
|
1629
|
+
customer_user_id?: string | undefined;
|
|
1630
|
+
customer_user_name?: string | undefined;
|
|
1631
|
+
customer_user_email?: string | undefined;
|
|
1632
|
+
} | undefined;
|
|
1633
|
+
conversationId?: string | undefined;
|
|
1634
|
+
conversationTitle?: string | undefined;
|
|
1635
|
+
projectId?: string | undefined;
|
|
1636
|
+
} | undefined;
|
|
1328
1637
|
} | undefined;
|
|
1329
1638
|
}>>>;
|
|
1330
1639
|
tiers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1432,10 +1741,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1432
1741
|
cached_content?: string | undefined;
|
|
1433
1742
|
}>>;
|
|
1434
1743
|
}, "strip", z.ZodTypeAny, {
|
|
1435
|
-
openai?: {
|
|
1436
|
-
prompt_cache_key?: string | undefined;
|
|
1437
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1438
|
-
} | undefined;
|
|
1439
1744
|
anthropic?: {
|
|
1440
1745
|
type?: "ephemeral" | undefined;
|
|
1441
1746
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1447,14 +1752,14 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1447
1752
|
gemini?: {
|
|
1448
1753
|
cached_content?: string | undefined;
|
|
1449
1754
|
} | undefined;
|
|
1450
|
-
google?: {
|
|
1451
|
-
cached_content?: string | undefined;
|
|
1452
|
-
} | undefined;
|
|
1453
|
-
}, {
|
|
1454
1755
|
openai?: {
|
|
1455
1756
|
prompt_cache_key?: string | undefined;
|
|
1456
1757
|
retention?: "in_memory" | "24h" | undefined;
|
|
1457
1758
|
} | undefined;
|
|
1759
|
+
google?: {
|
|
1760
|
+
cached_content?: string | undefined;
|
|
1761
|
+
} | undefined;
|
|
1762
|
+
}, {
|
|
1458
1763
|
anthropic?: {
|
|
1459
1764
|
type?: "ephemeral" | undefined;
|
|
1460
1765
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1466,6 +1771,10 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1466
1771
|
gemini?: {
|
|
1467
1772
|
cached_content?: string | undefined;
|
|
1468
1773
|
} | undefined;
|
|
1774
|
+
openai?: {
|
|
1775
|
+
prompt_cache_key?: string | undefined;
|
|
1776
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
1777
|
+
} | undefined;
|
|
1469
1778
|
google?: {
|
|
1470
1779
|
cached_content?: string | undefined;
|
|
1471
1780
|
} | undefined;
|
|
@@ -1478,22 +1787,25 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1478
1787
|
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1479
1788
|
google: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1480
1789
|
openrouter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1790
|
+
llmasaservice: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1481
1791
|
}, "strip", z.ZodTypeAny, {
|
|
1482
|
-
openai?: Record<string, unknown> | undefined;
|
|
1483
1792
|
anthropic?: Record<string, unknown> | undefined;
|
|
1484
1793
|
gemini?: Record<string, unknown> | undefined;
|
|
1485
|
-
|
|
1794
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
1795
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
1796
|
+
openai?: Record<string, unknown> | undefined;
|
|
1486
1797
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1487
1798
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1488
|
-
|
|
1799
|
+
google?: Record<string, unknown> | undefined;
|
|
1489
1800
|
}, {
|
|
1490
|
-
openai?: Record<string, unknown> | undefined;
|
|
1491
1801
|
anthropic?: Record<string, unknown> | undefined;
|
|
1492
1802
|
gemini?: Record<string, unknown> | undefined;
|
|
1493
|
-
|
|
1803
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
1804
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
1805
|
+
openai?: Record<string, unknown> | undefined;
|
|
1494
1806
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1495
1807
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1496
|
-
|
|
1808
|
+
google?: Record<string, unknown> | undefined;
|
|
1497
1809
|
}>>;
|
|
1498
1810
|
tools: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1499
1811
|
name: z.ZodString;
|
|
@@ -1563,6 +1875,58 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1563
1875
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1564
1876
|
models?: string[] | undefined;
|
|
1565
1877
|
}>>;
|
|
1878
|
+
llmasaservice: z.ZodOptional<z.ZodObject<{
|
|
1879
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
1880
|
+
project_id: z.ZodOptional<z.ZodString>;
|
|
1881
|
+
customer: z.ZodOptional<z.ZodObject<{
|
|
1882
|
+
customer_id: z.ZodString;
|
|
1883
|
+
customer_name: z.ZodOptional<z.ZodString>;
|
|
1884
|
+
customer_user_id: z.ZodOptional<z.ZodString>;
|
|
1885
|
+
customer_user_name: z.ZodOptional<z.ZodString>;
|
|
1886
|
+
customer_user_email: z.ZodOptional<z.ZodString>;
|
|
1887
|
+
}, "strip", z.ZodTypeAny, {
|
|
1888
|
+
customer_id: string;
|
|
1889
|
+
customer_name?: string | undefined;
|
|
1890
|
+
customer_user_id?: string | undefined;
|
|
1891
|
+
customer_user_name?: string | undefined;
|
|
1892
|
+
customer_user_email?: string | undefined;
|
|
1893
|
+
}, {
|
|
1894
|
+
customer_id: string;
|
|
1895
|
+
customer_name?: string | undefined;
|
|
1896
|
+
customer_user_id?: string | undefined;
|
|
1897
|
+
customer_user_name?: string | undefined;
|
|
1898
|
+
customer_user_email?: string | undefined;
|
|
1899
|
+
}>>;
|
|
1900
|
+
conversationId: z.ZodOptional<z.ZodString>;
|
|
1901
|
+
conversationTitle: z.ZodOptional<z.ZodString>;
|
|
1902
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
1903
|
+
}, "strip", z.ZodTypeAny, {
|
|
1904
|
+
base_url?: string | undefined;
|
|
1905
|
+
project_id?: string | undefined;
|
|
1906
|
+
customer?: {
|
|
1907
|
+
customer_id: string;
|
|
1908
|
+
customer_name?: string | undefined;
|
|
1909
|
+
customer_user_id?: string | undefined;
|
|
1910
|
+
customer_user_name?: string | undefined;
|
|
1911
|
+
customer_user_email?: string | undefined;
|
|
1912
|
+
} | undefined;
|
|
1913
|
+
conversationId?: string | undefined;
|
|
1914
|
+
conversationTitle?: string | undefined;
|
|
1915
|
+
projectId?: string | undefined;
|
|
1916
|
+
}, {
|
|
1917
|
+
base_url?: string | undefined;
|
|
1918
|
+
project_id?: string | undefined;
|
|
1919
|
+
customer?: {
|
|
1920
|
+
customer_id: string;
|
|
1921
|
+
customer_name?: string | undefined;
|
|
1922
|
+
customer_user_id?: string | undefined;
|
|
1923
|
+
customer_user_name?: string | undefined;
|
|
1924
|
+
customer_user_email?: string | undefined;
|
|
1925
|
+
} | undefined;
|
|
1926
|
+
conversationId?: string | undefined;
|
|
1927
|
+
conversationTitle?: string | undefined;
|
|
1928
|
+
projectId?: string | undefined;
|
|
1929
|
+
}>>;
|
|
1566
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1567
1931
|
anthropic?: {
|
|
1568
1932
|
top_k?: number | undefined;
|
|
@@ -1584,6 +1948,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1584
1948
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1585
1949
|
models?: string[] | undefined;
|
|
1586
1950
|
} | undefined;
|
|
1951
|
+
llmasaservice?: {
|
|
1952
|
+
base_url?: string | undefined;
|
|
1953
|
+
project_id?: string | undefined;
|
|
1954
|
+
customer?: {
|
|
1955
|
+
customer_id: string;
|
|
1956
|
+
customer_name?: string | undefined;
|
|
1957
|
+
customer_user_id?: string | undefined;
|
|
1958
|
+
customer_user_name?: string | undefined;
|
|
1959
|
+
customer_user_email?: string | undefined;
|
|
1960
|
+
} | undefined;
|
|
1961
|
+
conversationId?: string | undefined;
|
|
1962
|
+
conversationTitle?: string | undefined;
|
|
1963
|
+
projectId?: string | undefined;
|
|
1964
|
+
} | undefined;
|
|
1587
1965
|
}, {
|
|
1588
1966
|
anthropic?: {
|
|
1589
1967
|
top_k?: number | undefined;
|
|
@@ -1605,6 +1983,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1605
1983
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1606
1984
|
models?: string[] | undefined;
|
|
1607
1985
|
} | undefined;
|
|
1986
|
+
llmasaservice?: {
|
|
1987
|
+
base_url?: string | undefined;
|
|
1988
|
+
project_id?: string | undefined;
|
|
1989
|
+
customer?: {
|
|
1990
|
+
customer_id: string;
|
|
1991
|
+
customer_name?: string | undefined;
|
|
1992
|
+
customer_user_id?: string | undefined;
|
|
1993
|
+
customer_user_name?: string | undefined;
|
|
1994
|
+
customer_user_email?: string | undefined;
|
|
1995
|
+
} | undefined;
|
|
1996
|
+
conversationId?: string | undefined;
|
|
1997
|
+
conversationTitle?: string | undefined;
|
|
1998
|
+
projectId?: string | undefined;
|
|
1999
|
+
} | undefined;
|
|
1608
2000
|
}>>;
|
|
1609
2001
|
}, "strip", z.ZodTypeAny, {
|
|
1610
2002
|
model?: string | undefined;
|
|
@@ -1630,10 +2022,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1630
2022
|
schema_strict?: boolean | undefined;
|
|
1631
2023
|
} | undefined;
|
|
1632
2024
|
cache?: {
|
|
1633
|
-
openai?: {
|
|
1634
|
-
prompt_cache_key?: string | undefined;
|
|
1635
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1636
|
-
} | undefined;
|
|
1637
2025
|
anthropic?: {
|
|
1638
2026
|
type?: "ephemeral" | undefined;
|
|
1639
2027
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1645,18 +2033,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1645
2033
|
gemini?: {
|
|
1646
2034
|
cached_content?: string | undefined;
|
|
1647
2035
|
} | undefined;
|
|
2036
|
+
openai?: {
|
|
2037
|
+
prompt_cache_key?: string | undefined;
|
|
2038
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2039
|
+
} | undefined;
|
|
1648
2040
|
google?: {
|
|
1649
2041
|
cached_content?: string | undefined;
|
|
1650
2042
|
} | undefined;
|
|
1651
2043
|
} | undefined;
|
|
1652
2044
|
raw?: {
|
|
1653
|
-
openai?: Record<string, unknown> | undefined;
|
|
1654
2045
|
anthropic?: Record<string, unknown> | undefined;
|
|
1655
2046
|
gemini?: Record<string, unknown> | undefined;
|
|
1656
|
-
|
|
2047
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2048
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2049
|
+
openai?: Record<string, unknown> | undefined;
|
|
1657
2050
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1658
2051
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1659
|
-
|
|
2052
|
+
google?: Record<string, unknown> | undefined;
|
|
1660
2053
|
} | undefined;
|
|
1661
2054
|
tools?: (string | {
|
|
1662
2055
|
name: string;
|
|
@@ -1684,6 +2077,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1684
2077
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1685
2078
|
models?: string[] | undefined;
|
|
1686
2079
|
} | undefined;
|
|
2080
|
+
llmasaservice?: {
|
|
2081
|
+
base_url?: string | undefined;
|
|
2082
|
+
project_id?: string | undefined;
|
|
2083
|
+
customer?: {
|
|
2084
|
+
customer_id: string;
|
|
2085
|
+
customer_name?: string | undefined;
|
|
2086
|
+
customer_user_id?: string | undefined;
|
|
2087
|
+
customer_user_name?: string | undefined;
|
|
2088
|
+
customer_user_email?: string | undefined;
|
|
2089
|
+
} | undefined;
|
|
2090
|
+
conversationId?: string | undefined;
|
|
2091
|
+
conversationTitle?: string | undefined;
|
|
2092
|
+
projectId?: string | undefined;
|
|
2093
|
+
} | undefined;
|
|
1687
2094
|
} | undefined;
|
|
1688
2095
|
}, {
|
|
1689
2096
|
model?: string | undefined;
|
|
@@ -1709,10 +2116,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1709
2116
|
schema_strict?: boolean | undefined;
|
|
1710
2117
|
} | undefined;
|
|
1711
2118
|
cache?: {
|
|
1712
|
-
openai?: {
|
|
1713
|
-
prompt_cache_key?: string | undefined;
|
|
1714
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1715
|
-
} | undefined;
|
|
1716
2119
|
anthropic?: {
|
|
1717
2120
|
type?: "ephemeral" | undefined;
|
|
1718
2121
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1724,18 +2127,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1724
2127
|
gemini?: {
|
|
1725
2128
|
cached_content?: string | undefined;
|
|
1726
2129
|
} | undefined;
|
|
2130
|
+
openai?: {
|
|
2131
|
+
prompt_cache_key?: string | undefined;
|
|
2132
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2133
|
+
} | undefined;
|
|
1727
2134
|
google?: {
|
|
1728
2135
|
cached_content?: string | undefined;
|
|
1729
2136
|
} | undefined;
|
|
1730
2137
|
} | undefined;
|
|
1731
2138
|
raw?: {
|
|
1732
|
-
openai?: Record<string, unknown> | undefined;
|
|
1733
2139
|
anthropic?: Record<string, unknown> | undefined;
|
|
1734
2140
|
gemini?: Record<string, unknown> | undefined;
|
|
1735
|
-
|
|
2141
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2142
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2143
|
+
openai?: Record<string, unknown> | undefined;
|
|
1736
2144
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1737
2145
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1738
|
-
|
|
2146
|
+
google?: Record<string, unknown> | undefined;
|
|
1739
2147
|
} | undefined;
|
|
1740
2148
|
tools?: (string | {
|
|
1741
2149
|
name: string;
|
|
@@ -1763,6 +2171,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1763
2171
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1764
2172
|
models?: string[] | undefined;
|
|
1765
2173
|
} | undefined;
|
|
2174
|
+
llmasaservice?: {
|
|
2175
|
+
base_url?: string | undefined;
|
|
2176
|
+
project_id?: string | undefined;
|
|
2177
|
+
customer?: {
|
|
2178
|
+
customer_id: string;
|
|
2179
|
+
customer_name?: string | undefined;
|
|
2180
|
+
customer_user_id?: string | undefined;
|
|
2181
|
+
customer_user_name?: string | undefined;
|
|
2182
|
+
customer_user_email?: string | undefined;
|
|
2183
|
+
} | undefined;
|
|
2184
|
+
conversationId?: string | undefined;
|
|
2185
|
+
conversationTitle?: string | undefined;
|
|
2186
|
+
projectId?: string | undefined;
|
|
2187
|
+
} | undefined;
|
|
1766
2188
|
} | undefined;
|
|
1767
2189
|
}>>>;
|
|
1768
2190
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -1807,8 +2229,10 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1807
2229
|
}, "strip", z.ZodTypeAny, {
|
|
1808
2230
|
id: string;
|
|
1809
2231
|
schema_version: number;
|
|
1810
|
-
|
|
2232
|
+
description?: string | undefined;
|
|
1811
2233
|
includes?: string[] | undefined;
|
|
2234
|
+
provider?: "anthropic" | "gemini" | "openrouter" | "llmasaservice" | "openai" | "openai-responses" | "google" | "any" | undefined;
|
|
2235
|
+
model?: string | undefined;
|
|
1812
2236
|
fallback_models?: string[] | undefined;
|
|
1813
2237
|
reasoning?: {
|
|
1814
2238
|
effort?: "low" | "medium" | "high" | undefined;
|
|
@@ -1831,10 +2255,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1831
2255
|
schema_strict?: boolean | undefined;
|
|
1832
2256
|
} | undefined;
|
|
1833
2257
|
cache?: {
|
|
1834
|
-
openai?: {
|
|
1835
|
-
prompt_cache_key?: string | undefined;
|
|
1836
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1837
|
-
} | undefined;
|
|
1838
2258
|
anthropic?: {
|
|
1839
2259
|
type?: "ephemeral" | undefined;
|
|
1840
2260
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1846,26 +2266,29 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1846
2266
|
gemini?: {
|
|
1847
2267
|
cached_content?: string | undefined;
|
|
1848
2268
|
} | undefined;
|
|
2269
|
+
openai?: {
|
|
2270
|
+
prompt_cache_key?: string | undefined;
|
|
2271
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2272
|
+
} | undefined;
|
|
1849
2273
|
google?: {
|
|
1850
2274
|
cached_content?: string | undefined;
|
|
1851
2275
|
} | undefined;
|
|
1852
2276
|
} | undefined;
|
|
1853
2277
|
raw?: {
|
|
1854
|
-
openai?: Record<string, unknown> | undefined;
|
|
1855
2278
|
anthropic?: Record<string, unknown> | undefined;
|
|
1856
2279
|
gemini?: Record<string, unknown> | undefined;
|
|
1857
|
-
|
|
2280
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2281
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2282
|
+
openai?: Record<string, unknown> | undefined;
|
|
1858
2283
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1859
2284
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1860
|
-
|
|
2285
|
+
google?: Record<string, unknown> | undefined;
|
|
1861
2286
|
} | undefined;
|
|
1862
|
-
description?: string | undefined;
|
|
1863
2287
|
tools?: (string | {
|
|
1864
2288
|
name: string;
|
|
1865
2289
|
description?: string | undefined;
|
|
1866
2290
|
input_schema?: Record<string, unknown> | undefined;
|
|
1867
2291
|
})[] | undefined;
|
|
1868
|
-
provider?: "openai" | "anthropic" | "gemini" | "google" | "openai-responses" | "openrouter" | "any" | undefined;
|
|
1869
2292
|
provider_options?: {
|
|
1870
2293
|
anthropic?: {
|
|
1871
2294
|
top_k?: number | undefined;
|
|
@@ -1887,10 +2310,31 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1887
2310
|
plugins?: Record<string, unknown>[] | undefined;
|
|
1888
2311
|
models?: string[] | undefined;
|
|
1889
2312
|
} | undefined;
|
|
2313
|
+
llmasaservice?: {
|
|
2314
|
+
base_url?: string | undefined;
|
|
2315
|
+
project_id?: string | undefined;
|
|
2316
|
+
customer?: {
|
|
2317
|
+
customer_id: string;
|
|
2318
|
+
customer_name?: string | undefined;
|
|
2319
|
+
customer_user_id?: string | undefined;
|
|
2320
|
+
customer_user_name?: string | undefined;
|
|
2321
|
+
customer_user_email?: string | undefined;
|
|
2322
|
+
} | undefined;
|
|
2323
|
+
conversationId?: string | undefined;
|
|
2324
|
+
conversationTitle?: string | undefined;
|
|
2325
|
+
projectId?: string | undefined;
|
|
2326
|
+
} | undefined;
|
|
1890
2327
|
} | undefined;
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
2328
|
+
metadata?: {
|
|
2329
|
+
owner?: string | undefined;
|
|
2330
|
+
tags?: string[] | undefined;
|
|
2331
|
+
review_required?: boolean | undefined;
|
|
2332
|
+
stable?: boolean | undefined;
|
|
2333
|
+
} | undefined;
|
|
2334
|
+
sections?: {
|
|
2335
|
+
system_instructions?: string | undefined;
|
|
2336
|
+
prompt_template?: string | undefined;
|
|
2337
|
+
notes?: string | undefined;
|
|
1894
2338
|
} | undefined;
|
|
1895
2339
|
mcp?: {
|
|
1896
2340
|
servers?: (string | {
|
|
@@ -1899,9 +2343,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1899
2343
|
})[] | undefined;
|
|
1900
2344
|
} | undefined;
|
|
1901
2345
|
context?: {
|
|
1902
|
-
history?: {
|
|
1903
|
-
max_items?: number | undefined;
|
|
1904
|
-
} | undefined;
|
|
1905
2346
|
inputs?: (string | {
|
|
1906
2347
|
name: string;
|
|
1907
2348
|
max_size?: number | undefined;
|
|
@@ -1923,6 +2364,9 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1923
2364
|
return_message?: string | undefined;
|
|
1924
2365
|
} | undefined;
|
|
1925
2366
|
})[] | undefined;
|
|
2367
|
+
history?: {
|
|
2368
|
+
max_items?: number | undefined;
|
|
2369
|
+
} | undefined;
|
|
1926
2370
|
} | undefined;
|
|
1927
2371
|
environments?: Record<string, {
|
|
1928
2372
|
model?: string | undefined;
|
|
@@ -1948,10 +2392,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1948
2392
|
schema_strict?: boolean | undefined;
|
|
1949
2393
|
} | undefined;
|
|
1950
2394
|
cache?: {
|
|
1951
|
-
openai?: {
|
|
1952
|
-
prompt_cache_key?: string | undefined;
|
|
1953
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
1954
|
-
} | undefined;
|
|
1955
2395
|
anthropic?: {
|
|
1956
2396
|
type?: "ephemeral" | undefined;
|
|
1957
2397
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -1963,18 +2403,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
1963
2403
|
gemini?: {
|
|
1964
2404
|
cached_content?: string | undefined;
|
|
1965
2405
|
} | undefined;
|
|
2406
|
+
openai?: {
|
|
2407
|
+
prompt_cache_key?: string | undefined;
|
|
2408
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2409
|
+
} | undefined;
|
|
1966
2410
|
google?: {
|
|
1967
2411
|
cached_content?: string | undefined;
|
|
1968
2412
|
} | undefined;
|
|
1969
2413
|
} | undefined;
|
|
1970
2414
|
raw?: {
|
|
1971
|
-
openai?: Record<string, unknown> | undefined;
|
|
1972
2415
|
anthropic?: Record<string, unknown> | undefined;
|
|
1973
2416
|
gemini?: Record<string, unknown> | undefined;
|
|
1974
|
-
|
|
2417
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2418
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2419
|
+
openai?: Record<string, unknown> | undefined;
|
|
1975
2420
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
1976
2421
|
openai_responses?: Record<string, unknown> | undefined;
|
|
1977
|
-
|
|
2422
|
+
google?: Record<string, unknown> | undefined;
|
|
1978
2423
|
} | undefined;
|
|
1979
2424
|
tools?: (string | {
|
|
1980
2425
|
name: string;
|
|
@@ -2002,6 +2447,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2002
2447
|
plugins?: Record<string, unknown>[] | undefined;
|
|
2003
2448
|
models?: string[] | undefined;
|
|
2004
2449
|
} | undefined;
|
|
2450
|
+
llmasaservice?: {
|
|
2451
|
+
base_url?: string | undefined;
|
|
2452
|
+
project_id?: string | undefined;
|
|
2453
|
+
customer?: {
|
|
2454
|
+
customer_id: string;
|
|
2455
|
+
customer_name?: string | undefined;
|
|
2456
|
+
customer_user_id?: string | undefined;
|
|
2457
|
+
customer_user_name?: string | undefined;
|
|
2458
|
+
customer_user_email?: string | undefined;
|
|
2459
|
+
} | undefined;
|
|
2460
|
+
conversationId?: string | undefined;
|
|
2461
|
+
conversationTitle?: string | undefined;
|
|
2462
|
+
projectId?: string | undefined;
|
|
2463
|
+
} | undefined;
|
|
2005
2464
|
} | undefined;
|
|
2006
2465
|
}> | undefined;
|
|
2007
2466
|
tiers?: Record<string, {
|
|
@@ -2028,10 +2487,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2028
2487
|
schema_strict?: boolean | undefined;
|
|
2029
2488
|
} | undefined;
|
|
2030
2489
|
cache?: {
|
|
2031
|
-
openai?: {
|
|
2032
|
-
prompt_cache_key?: string | undefined;
|
|
2033
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
2034
|
-
} | undefined;
|
|
2035
2490
|
anthropic?: {
|
|
2036
2491
|
type?: "ephemeral" | undefined;
|
|
2037
2492
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -2043,18 +2498,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2043
2498
|
gemini?: {
|
|
2044
2499
|
cached_content?: string | undefined;
|
|
2045
2500
|
} | undefined;
|
|
2501
|
+
openai?: {
|
|
2502
|
+
prompt_cache_key?: string | undefined;
|
|
2503
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2504
|
+
} | undefined;
|
|
2046
2505
|
google?: {
|
|
2047
2506
|
cached_content?: string | undefined;
|
|
2048
2507
|
} | undefined;
|
|
2049
2508
|
} | undefined;
|
|
2050
2509
|
raw?: {
|
|
2051
|
-
openai?: Record<string, unknown> | undefined;
|
|
2052
2510
|
anthropic?: Record<string, unknown> | undefined;
|
|
2053
2511
|
gemini?: Record<string, unknown> | undefined;
|
|
2054
|
-
|
|
2512
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2513
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2514
|
+
openai?: Record<string, unknown> | undefined;
|
|
2055
2515
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
2056
2516
|
openai_responses?: Record<string, unknown> | undefined;
|
|
2057
|
-
|
|
2517
|
+
google?: Record<string, unknown> | undefined;
|
|
2058
2518
|
} | undefined;
|
|
2059
2519
|
tools?: (string | {
|
|
2060
2520
|
name: string;
|
|
@@ -2082,23 +2542,32 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2082
2542
|
plugins?: Record<string, unknown>[] | undefined;
|
|
2083
2543
|
models?: string[] | undefined;
|
|
2084
2544
|
} | undefined;
|
|
2545
|
+
llmasaservice?: {
|
|
2546
|
+
base_url?: string | undefined;
|
|
2547
|
+
project_id?: string | undefined;
|
|
2548
|
+
customer?: {
|
|
2549
|
+
customer_id: string;
|
|
2550
|
+
customer_name?: string | undefined;
|
|
2551
|
+
customer_user_id?: string | undefined;
|
|
2552
|
+
customer_user_name?: string | undefined;
|
|
2553
|
+
customer_user_email?: string | undefined;
|
|
2554
|
+
} | undefined;
|
|
2555
|
+
conversationId?: string | undefined;
|
|
2556
|
+
conversationTitle?: string | undefined;
|
|
2557
|
+
projectId?: string | undefined;
|
|
2558
|
+
} | undefined;
|
|
2085
2559
|
} | undefined;
|
|
2086
2560
|
}> | undefined;
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
review_required?: boolean | undefined;
|
|
2091
|
-
stable?: boolean | undefined;
|
|
2092
|
-
} | undefined;
|
|
2093
|
-
sections?: {
|
|
2094
|
-
system_instructions?: string | undefined;
|
|
2095
|
-
prompt_template?: string | undefined;
|
|
2096
|
-
notes?: string | undefined;
|
|
2561
|
+
source?: {
|
|
2562
|
+
file_path?: string | undefined;
|
|
2563
|
+
checksum?: string | undefined;
|
|
2097
2564
|
} | undefined;
|
|
2098
2565
|
}, {
|
|
2099
2566
|
id: string;
|
|
2100
|
-
|
|
2567
|
+
description?: string | undefined;
|
|
2101
2568
|
includes?: string[] | undefined;
|
|
2569
|
+
provider?: "anthropic" | "gemini" | "openrouter" | "llmasaservice" | "openai" | "openai-responses" | "google" | "any" | undefined;
|
|
2570
|
+
model?: string | undefined;
|
|
2102
2571
|
fallback_models?: string[] | undefined;
|
|
2103
2572
|
reasoning?: {
|
|
2104
2573
|
effort?: "low" | "medium" | "high" | undefined;
|
|
@@ -2121,10 +2590,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2121
2590
|
schema_strict?: boolean | undefined;
|
|
2122
2591
|
} | undefined;
|
|
2123
2592
|
cache?: {
|
|
2124
|
-
openai?: {
|
|
2125
|
-
prompt_cache_key?: string | undefined;
|
|
2126
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
2127
|
-
} | undefined;
|
|
2128
2593
|
anthropic?: {
|
|
2129
2594
|
type?: "ephemeral" | undefined;
|
|
2130
2595
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -2136,26 +2601,29 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2136
2601
|
gemini?: {
|
|
2137
2602
|
cached_content?: string | undefined;
|
|
2138
2603
|
} | undefined;
|
|
2604
|
+
openai?: {
|
|
2605
|
+
prompt_cache_key?: string | undefined;
|
|
2606
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2607
|
+
} | undefined;
|
|
2139
2608
|
google?: {
|
|
2140
2609
|
cached_content?: string | undefined;
|
|
2141
2610
|
} | undefined;
|
|
2142
2611
|
} | undefined;
|
|
2143
2612
|
raw?: {
|
|
2144
|
-
openai?: Record<string, unknown> | undefined;
|
|
2145
2613
|
anthropic?: Record<string, unknown> | undefined;
|
|
2146
2614
|
gemini?: Record<string, unknown> | undefined;
|
|
2147
|
-
|
|
2615
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2616
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2617
|
+
openai?: Record<string, unknown> | undefined;
|
|
2148
2618
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
2149
2619
|
openai_responses?: Record<string, unknown> | undefined;
|
|
2150
|
-
|
|
2620
|
+
google?: Record<string, unknown> | undefined;
|
|
2151
2621
|
} | undefined;
|
|
2152
|
-
description?: string | undefined;
|
|
2153
2622
|
tools?: (string | {
|
|
2154
2623
|
name: string;
|
|
2155
2624
|
description?: string | undefined;
|
|
2156
2625
|
input_schema?: Record<string, unknown> | undefined;
|
|
2157
2626
|
})[] | undefined;
|
|
2158
|
-
provider?: "openai" | "anthropic" | "gemini" | "google" | "openai-responses" | "openrouter" | "any" | undefined;
|
|
2159
2627
|
provider_options?: {
|
|
2160
2628
|
anthropic?: {
|
|
2161
2629
|
top_k?: number | undefined;
|
|
@@ -2177,10 +2645,31 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2177
2645
|
plugins?: Record<string, unknown>[] | undefined;
|
|
2178
2646
|
models?: string[] | undefined;
|
|
2179
2647
|
} | undefined;
|
|
2648
|
+
llmasaservice?: {
|
|
2649
|
+
base_url?: string | undefined;
|
|
2650
|
+
project_id?: string | undefined;
|
|
2651
|
+
customer?: {
|
|
2652
|
+
customer_id: string;
|
|
2653
|
+
customer_name?: string | undefined;
|
|
2654
|
+
customer_user_id?: string | undefined;
|
|
2655
|
+
customer_user_name?: string | undefined;
|
|
2656
|
+
customer_user_email?: string | undefined;
|
|
2657
|
+
} | undefined;
|
|
2658
|
+
conversationId?: string | undefined;
|
|
2659
|
+
conversationTitle?: string | undefined;
|
|
2660
|
+
projectId?: string | undefined;
|
|
2661
|
+
} | undefined;
|
|
2180
2662
|
} | undefined;
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2663
|
+
metadata?: {
|
|
2664
|
+
owner?: string | undefined;
|
|
2665
|
+
tags?: string[] | undefined;
|
|
2666
|
+
review_required?: boolean | undefined;
|
|
2667
|
+
stable?: boolean | undefined;
|
|
2668
|
+
} | undefined;
|
|
2669
|
+
sections?: {
|
|
2670
|
+
system_instructions?: string | undefined;
|
|
2671
|
+
prompt_template?: string | undefined;
|
|
2672
|
+
notes?: string | undefined;
|
|
2184
2673
|
} | undefined;
|
|
2185
2674
|
schema_version?: number | undefined;
|
|
2186
2675
|
mcp?: {
|
|
@@ -2190,9 +2679,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2190
2679
|
})[] | undefined;
|
|
2191
2680
|
} | undefined;
|
|
2192
2681
|
context?: {
|
|
2193
|
-
history?: {
|
|
2194
|
-
max_items?: number | undefined;
|
|
2195
|
-
} | undefined;
|
|
2196
2682
|
inputs?: (string | {
|
|
2197
2683
|
name: string;
|
|
2198
2684
|
max_size?: number | undefined;
|
|
@@ -2214,6 +2700,9 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2214
2700
|
return_message?: string | undefined;
|
|
2215
2701
|
} | undefined;
|
|
2216
2702
|
})[] | undefined;
|
|
2703
|
+
history?: {
|
|
2704
|
+
max_items?: number | undefined;
|
|
2705
|
+
} | undefined;
|
|
2217
2706
|
} | undefined;
|
|
2218
2707
|
environments?: Record<string, {
|
|
2219
2708
|
model?: string | undefined;
|
|
@@ -2239,10 +2728,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2239
2728
|
schema_strict?: boolean | undefined;
|
|
2240
2729
|
} | undefined;
|
|
2241
2730
|
cache?: {
|
|
2242
|
-
openai?: {
|
|
2243
|
-
prompt_cache_key?: string | undefined;
|
|
2244
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
2245
|
-
} | undefined;
|
|
2246
2731
|
anthropic?: {
|
|
2247
2732
|
type?: "ephemeral" | undefined;
|
|
2248
2733
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -2254,18 +2739,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2254
2739
|
gemini?: {
|
|
2255
2740
|
cached_content?: string | undefined;
|
|
2256
2741
|
} | undefined;
|
|
2742
|
+
openai?: {
|
|
2743
|
+
prompt_cache_key?: string | undefined;
|
|
2744
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2745
|
+
} | undefined;
|
|
2257
2746
|
google?: {
|
|
2258
2747
|
cached_content?: string | undefined;
|
|
2259
2748
|
} | undefined;
|
|
2260
2749
|
} | undefined;
|
|
2261
2750
|
raw?: {
|
|
2262
|
-
openai?: Record<string, unknown> | undefined;
|
|
2263
2751
|
anthropic?: Record<string, unknown> | undefined;
|
|
2264
2752
|
gemini?: Record<string, unknown> | undefined;
|
|
2265
|
-
|
|
2753
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2754
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2755
|
+
openai?: Record<string, unknown> | undefined;
|
|
2266
2756
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
2267
2757
|
openai_responses?: Record<string, unknown> | undefined;
|
|
2268
|
-
|
|
2758
|
+
google?: Record<string, unknown> | undefined;
|
|
2269
2759
|
} | undefined;
|
|
2270
2760
|
tools?: (string | {
|
|
2271
2761
|
name: string;
|
|
@@ -2293,6 +2783,20 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2293
2783
|
plugins?: Record<string, unknown>[] | undefined;
|
|
2294
2784
|
models?: string[] | undefined;
|
|
2295
2785
|
} | undefined;
|
|
2786
|
+
llmasaservice?: {
|
|
2787
|
+
base_url?: string | undefined;
|
|
2788
|
+
project_id?: string | undefined;
|
|
2789
|
+
customer?: {
|
|
2790
|
+
customer_id: string;
|
|
2791
|
+
customer_name?: string | undefined;
|
|
2792
|
+
customer_user_id?: string | undefined;
|
|
2793
|
+
customer_user_name?: string | undefined;
|
|
2794
|
+
customer_user_email?: string | undefined;
|
|
2795
|
+
} | undefined;
|
|
2796
|
+
conversationId?: string | undefined;
|
|
2797
|
+
conversationTitle?: string | undefined;
|
|
2798
|
+
projectId?: string | undefined;
|
|
2799
|
+
} | undefined;
|
|
2296
2800
|
} | undefined;
|
|
2297
2801
|
}> | undefined;
|
|
2298
2802
|
tiers?: Record<string, {
|
|
@@ -2319,10 +2823,6 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2319
2823
|
schema_strict?: boolean | undefined;
|
|
2320
2824
|
} | undefined;
|
|
2321
2825
|
cache?: {
|
|
2322
|
-
openai?: {
|
|
2323
|
-
prompt_cache_key?: string | undefined;
|
|
2324
|
-
retention?: "in_memory" | "24h" | undefined;
|
|
2325
|
-
} | undefined;
|
|
2326
2826
|
anthropic?: {
|
|
2327
2827
|
type?: "ephemeral" | undefined;
|
|
2328
2828
|
mode?: "automatic" | "explicit" | undefined;
|
|
@@ -2334,18 +2834,23 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2334
2834
|
gemini?: {
|
|
2335
2835
|
cached_content?: string | undefined;
|
|
2336
2836
|
} | undefined;
|
|
2837
|
+
openai?: {
|
|
2838
|
+
prompt_cache_key?: string | undefined;
|
|
2839
|
+
retention?: "in_memory" | "24h" | undefined;
|
|
2840
|
+
} | undefined;
|
|
2337
2841
|
google?: {
|
|
2338
2842
|
cached_content?: string | undefined;
|
|
2339
2843
|
} | undefined;
|
|
2340
2844
|
} | undefined;
|
|
2341
2845
|
raw?: {
|
|
2342
|
-
openai?: Record<string, unknown> | undefined;
|
|
2343
2846
|
anthropic?: Record<string, unknown> | undefined;
|
|
2344
2847
|
gemini?: Record<string, unknown> | undefined;
|
|
2345
|
-
|
|
2848
|
+
openrouter?: Record<string, unknown> | undefined;
|
|
2849
|
+
llmasaservice?: Record<string, unknown> | undefined;
|
|
2850
|
+
openai?: Record<string, unknown> | undefined;
|
|
2346
2851
|
'openai-responses'?: Record<string, unknown> | undefined;
|
|
2347
2852
|
openai_responses?: Record<string, unknown> | undefined;
|
|
2348
|
-
|
|
2853
|
+
google?: Record<string, unknown> | undefined;
|
|
2349
2854
|
} | undefined;
|
|
2350
2855
|
tools?: (string | {
|
|
2351
2856
|
name: string;
|
|
@@ -2373,18 +2878,25 @@ declare const PromptAssetSchema: z.ZodObject<{
|
|
|
2373
2878
|
plugins?: Record<string, unknown>[] | undefined;
|
|
2374
2879
|
models?: string[] | undefined;
|
|
2375
2880
|
} | undefined;
|
|
2881
|
+
llmasaservice?: {
|
|
2882
|
+
base_url?: string | undefined;
|
|
2883
|
+
project_id?: string | undefined;
|
|
2884
|
+
customer?: {
|
|
2885
|
+
customer_id: string;
|
|
2886
|
+
customer_name?: string | undefined;
|
|
2887
|
+
customer_user_id?: string | undefined;
|
|
2888
|
+
customer_user_name?: string | undefined;
|
|
2889
|
+
customer_user_email?: string | undefined;
|
|
2890
|
+
} | undefined;
|
|
2891
|
+
conversationId?: string | undefined;
|
|
2892
|
+
conversationTitle?: string | undefined;
|
|
2893
|
+
projectId?: string | undefined;
|
|
2894
|
+
} | undefined;
|
|
2376
2895
|
} | undefined;
|
|
2377
2896
|
}> | undefined;
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
review_required?: boolean | undefined;
|
|
2382
|
-
stable?: boolean | undefined;
|
|
2383
|
-
} | undefined;
|
|
2384
|
-
sections?: {
|
|
2385
|
-
system_instructions?: string | undefined;
|
|
2386
|
-
prompt_template?: string | undefined;
|
|
2387
|
-
notes?: string | undefined;
|
|
2897
|
+
source?: {
|
|
2898
|
+
file_path?: string | undefined;
|
|
2899
|
+
checksum?: string | undefined;
|
|
2388
2900
|
} | undefined;
|
|
2389
2901
|
}>;
|
|
2390
2902
|
type PromptAsset = z.infer<typeof PromptAssetSchema>;
|