graphlit-client 1.0.20241210001 → 1.0.20241212002
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/dist/client.d.ts
CHANGED
@@ -73,9 +73,9 @@ declare class Graphlit {
|
|
73
73
|
reviseText(prompt: string, text: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseTextMutation>;
|
74
74
|
reviseContent(prompt: string, content: Types.EntityReferenceInput, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseContentMutation>;
|
75
75
|
prompt(prompt: string, specification?: Types.EntityReferenceInput, messages?: [Types.ConversationMessageInput], correlationId?: string): Promise<Types.PromptMutation>;
|
76
|
-
formatConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.FormatConversationMutation>;
|
76
|
+
formatConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, includeDetails?: boolean, correlationId?: string): Promise<Types.FormatConversationMutation>;
|
77
77
|
completeConversation(completion: string, id: string, correlationId?: string): Promise<Types.CompleteConversationMutation>;
|
78
|
-
promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
78
|
+
promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, includeDetails?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
79
79
|
continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
|
80
80
|
publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.PublishConversationMutation>;
|
81
81
|
suggestConversation(id: string, count?: number, correlationId?: string): Promise<Types.SuggestConversationMutation>;
|
package/dist/client.js
CHANGED
@@ -423,9 +423,9 @@ class Graphlit {
|
|
423
423
|
return this.mutateAndCheckError(Documents.Prompt, { prompt: prompt, specification: specification, messages: messages, correlationId: correlationId });
|
424
424
|
});
|
425
425
|
}
|
426
|
-
formatConversation(prompt, id, specification, correlationId) {
|
426
|
+
formatConversation(prompt, id, specification, includeDetails, correlationId) {
|
427
427
|
return __awaiter(this, void 0, void 0, function* () {
|
428
|
-
return this.mutateAndCheckError(Documents.FormatConversation, { prompt: prompt, id: id, specification: specification, correlationId: correlationId });
|
428
|
+
return this.mutateAndCheckError(Documents.FormatConversation, { prompt: prompt, id: id, specification: specification, includeDetails: includeDetails, correlationId: correlationId });
|
429
429
|
});
|
430
430
|
}
|
431
431
|
completeConversation(completion, id, correlationId) {
|
@@ -433,9 +433,9 @@ class Graphlit {
|
|
433
433
|
return this.mutateAndCheckError(Documents.CompleteConversation, { completion: completion, id: id, correlationId: correlationId });
|
434
434
|
});
|
435
435
|
}
|
436
|
-
promptConversation(prompt, id, specification, tools, requireTool, correlationId) {
|
436
|
+
promptConversation(prompt, id, specification, tools, requireTool, includeDetails, correlationId) {
|
437
437
|
return __awaiter(this, void 0, void 0, function* () {
|
438
|
-
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, tools: tools, requireTool: requireTool, correlationId: correlationId });
|
438
|
+
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, tools: tools, requireTool: requireTool, includeDetails: includeDetails, correlationId: correlationId });
|
439
439
|
});
|
440
440
|
}
|
441
441
|
continueConversation(id, responses, correlationId) {
|
@@ -2080,6 +2080,149 @@ exports.CompleteConversation = (0, graphql_tag_1.default) `
|
|
2080
2080
|
relation
|
2081
2081
|
}
|
2082
2082
|
}
|
2083
|
+
details {
|
2084
|
+
modelService
|
2085
|
+
model
|
2086
|
+
supportsToolCalling
|
2087
|
+
sourceCount
|
2088
|
+
observableCount
|
2089
|
+
toolCount
|
2090
|
+
renderedSourceCount
|
2091
|
+
renderedObservableCount
|
2092
|
+
renderedToolCount
|
2093
|
+
rankedSourceCount
|
2094
|
+
rankedObservableCount
|
2095
|
+
rankedToolCount
|
2096
|
+
tokenLimit
|
2097
|
+
completionTokenLimit
|
2098
|
+
sources
|
2099
|
+
formattedSources
|
2100
|
+
formattedObservables
|
2101
|
+
formattedInstructions
|
2102
|
+
formattedTools
|
2103
|
+
messages {
|
2104
|
+
role
|
2105
|
+
author
|
2106
|
+
message
|
2107
|
+
citations {
|
2108
|
+
content {
|
2109
|
+
id
|
2110
|
+
name
|
2111
|
+
state
|
2112
|
+
originalDate
|
2113
|
+
identifier
|
2114
|
+
uri
|
2115
|
+
type
|
2116
|
+
fileType
|
2117
|
+
mimeType
|
2118
|
+
format
|
2119
|
+
formatName
|
2120
|
+
fileExtension
|
2121
|
+
fileName
|
2122
|
+
fileSize
|
2123
|
+
masterUri
|
2124
|
+
imageUri
|
2125
|
+
textUri
|
2126
|
+
audioUri
|
2127
|
+
transcriptUri
|
2128
|
+
summary
|
2129
|
+
customSummary
|
2130
|
+
keywords
|
2131
|
+
bullets
|
2132
|
+
headlines
|
2133
|
+
posts
|
2134
|
+
chapters
|
2135
|
+
questions
|
2136
|
+
video {
|
2137
|
+
width
|
2138
|
+
height
|
2139
|
+
duration
|
2140
|
+
make
|
2141
|
+
model
|
2142
|
+
software
|
2143
|
+
title
|
2144
|
+
description
|
2145
|
+
keywords
|
2146
|
+
author
|
2147
|
+
}
|
2148
|
+
audio {
|
2149
|
+
keywords
|
2150
|
+
author
|
2151
|
+
series
|
2152
|
+
episode
|
2153
|
+
episodeType
|
2154
|
+
season
|
2155
|
+
publisher
|
2156
|
+
copyright
|
2157
|
+
genre
|
2158
|
+
title
|
2159
|
+
description
|
2160
|
+
bitrate
|
2161
|
+
channels
|
2162
|
+
sampleRate
|
2163
|
+
bitsPerSample
|
2164
|
+
duration
|
2165
|
+
}
|
2166
|
+
image {
|
2167
|
+
width
|
2168
|
+
height
|
2169
|
+
resolutionX
|
2170
|
+
resolutionY
|
2171
|
+
bitsPerComponent
|
2172
|
+
components
|
2173
|
+
projectionType
|
2174
|
+
orientation
|
2175
|
+
description
|
2176
|
+
make
|
2177
|
+
model
|
2178
|
+
software
|
2179
|
+
lens
|
2180
|
+
focalLength
|
2181
|
+
exposureTime
|
2182
|
+
fNumber
|
2183
|
+
iso
|
2184
|
+
heading
|
2185
|
+
pitch
|
2186
|
+
}
|
2187
|
+
document {
|
2188
|
+
title
|
2189
|
+
subject
|
2190
|
+
summary
|
2191
|
+
author
|
2192
|
+
publisher
|
2193
|
+
description
|
2194
|
+
keywords
|
2195
|
+
pageCount
|
2196
|
+
worksheetCount
|
2197
|
+
slideCount
|
2198
|
+
wordCount
|
2199
|
+
lineCount
|
2200
|
+
paragraphCount
|
2201
|
+
isEncrypted
|
2202
|
+
hasDigitalSignature
|
2203
|
+
}
|
2204
|
+
}
|
2205
|
+
index
|
2206
|
+
text
|
2207
|
+
startTime
|
2208
|
+
endTime
|
2209
|
+
pageNumber
|
2210
|
+
frameNumber
|
2211
|
+
}
|
2212
|
+
toolCalls {
|
2213
|
+
id
|
2214
|
+
name
|
2215
|
+
arguments
|
2216
|
+
}
|
2217
|
+
tokens
|
2218
|
+
throughput
|
2219
|
+
completionTime
|
2220
|
+
timestamp
|
2221
|
+
modelService
|
2222
|
+
model
|
2223
|
+
}
|
2224
|
+
assistantMessage
|
2225
|
+
}
|
2083
2226
|
}
|
2084
2227
|
}
|
2085
2228
|
`;
|
@@ -2245,6 +2388,149 @@ exports.ContinueConversation = (0, graphql_tag_1.default) `
|
|
2245
2388
|
relation
|
2246
2389
|
}
|
2247
2390
|
}
|
2391
|
+
details {
|
2392
|
+
modelService
|
2393
|
+
model
|
2394
|
+
supportsToolCalling
|
2395
|
+
sourceCount
|
2396
|
+
observableCount
|
2397
|
+
toolCount
|
2398
|
+
renderedSourceCount
|
2399
|
+
renderedObservableCount
|
2400
|
+
renderedToolCount
|
2401
|
+
rankedSourceCount
|
2402
|
+
rankedObservableCount
|
2403
|
+
rankedToolCount
|
2404
|
+
tokenLimit
|
2405
|
+
completionTokenLimit
|
2406
|
+
sources
|
2407
|
+
formattedSources
|
2408
|
+
formattedObservables
|
2409
|
+
formattedInstructions
|
2410
|
+
formattedTools
|
2411
|
+
messages {
|
2412
|
+
role
|
2413
|
+
author
|
2414
|
+
message
|
2415
|
+
citations {
|
2416
|
+
content {
|
2417
|
+
id
|
2418
|
+
name
|
2419
|
+
state
|
2420
|
+
originalDate
|
2421
|
+
identifier
|
2422
|
+
uri
|
2423
|
+
type
|
2424
|
+
fileType
|
2425
|
+
mimeType
|
2426
|
+
format
|
2427
|
+
formatName
|
2428
|
+
fileExtension
|
2429
|
+
fileName
|
2430
|
+
fileSize
|
2431
|
+
masterUri
|
2432
|
+
imageUri
|
2433
|
+
textUri
|
2434
|
+
audioUri
|
2435
|
+
transcriptUri
|
2436
|
+
summary
|
2437
|
+
customSummary
|
2438
|
+
keywords
|
2439
|
+
bullets
|
2440
|
+
headlines
|
2441
|
+
posts
|
2442
|
+
chapters
|
2443
|
+
questions
|
2444
|
+
video {
|
2445
|
+
width
|
2446
|
+
height
|
2447
|
+
duration
|
2448
|
+
make
|
2449
|
+
model
|
2450
|
+
software
|
2451
|
+
title
|
2452
|
+
description
|
2453
|
+
keywords
|
2454
|
+
author
|
2455
|
+
}
|
2456
|
+
audio {
|
2457
|
+
keywords
|
2458
|
+
author
|
2459
|
+
series
|
2460
|
+
episode
|
2461
|
+
episodeType
|
2462
|
+
season
|
2463
|
+
publisher
|
2464
|
+
copyright
|
2465
|
+
genre
|
2466
|
+
title
|
2467
|
+
description
|
2468
|
+
bitrate
|
2469
|
+
channels
|
2470
|
+
sampleRate
|
2471
|
+
bitsPerSample
|
2472
|
+
duration
|
2473
|
+
}
|
2474
|
+
image {
|
2475
|
+
width
|
2476
|
+
height
|
2477
|
+
resolutionX
|
2478
|
+
resolutionY
|
2479
|
+
bitsPerComponent
|
2480
|
+
components
|
2481
|
+
projectionType
|
2482
|
+
orientation
|
2483
|
+
description
|
2484
|
+
make
|
2485
|
+
model
|
2486
|
+
software
|
2487
|
+
lens
|
2488
|
+
focalLength
|
2489
|
+
exposureTime
|
2490
|
+
fNumber
|
2491
|
+
iso
|
2492
|
+
heading
|
2493
|
+
pitch
|
2494
|
+
}
|
2495
|
+
document {
|
2496
|
+
title
|
2497
|
+
subject
|
2498
|
+
summary
|
2499
|
+
author
|
2500
|
+
publisher
|
2501
|
+
description
|
2502
|
+
keywords
|
2503
|
+
pageCount
|
2504
|
+
worksheetCount
|
2505
|
+
slideCount
|
2506
|
+
wordCount
|
2507
|
+
lineCount
|
2508
|
+
paragraphCount
|
2509
|
+
isEncrypted
|
2510
|
+
hasDigitalSignature
|
2511
|
+
}
|
2512
|
+
}
|
2513
|
+
index
|
2514
|
+
text
|
2515
|
+
startTime
|
2516
|
+
endTime
|
2517
|
+
pageNumber
|
2518
|
+
frameNumber
|
2519
|
+
}
|
2520
|
+
toolCalls {
|
2521
|
+
id
|
2522
|
+
name
|
2523
|
+
arguments
|
2524
|
+
}
|
2525
|
+
tokens
|
2526
|
+
throughput
|
2527
|
+
completionTime
|
2528
|
+
timestamp
|
2529
|
+
modelService
|
2530
|
+
model
|
2531
|
+
}
|
2532
|
+
assistantMessage
|
2533
|
+
}
|
2248
2534
|
}
|
2249
2535
|
}
|
2250
2536
|
`;
|
@@ -2294,11 +2580,12 @@ exports.DeleteConversations = (0, graphql_tag_1.default) `
|
|
2294
2580
|
}
|
2295
2581
|
`;
|
2296
2582
|
exports.FormatConversation = (0, graphql_tag_1.default) `
|
2297
|
-
mutation FormatConversation($prompt: String!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
|
2583
|
+
mutation FormatConversation($prompt: String!, $id: ID, $specification: EntityReferenceInput, $includeDetails: Boolean, $correlationId: String) {
|
2298
2584
|
formatConversation(
|
2299
2585
|
prompt: $prompt
|
2300
2586
|
id: $id
|
2301
2587
|
specification: $specification
|
2588
|
+
includeDetails: $includeDetails
|
2302
2589
|
correlationId: $correlationId
|
2303
2590
|
) {
|
2304
2591
|
conversation {
|
@@ -2456,6 +2743,149 @@ exports.FormatConversation = (0, graphql_tag_1.default) `
|
|
2456
2743
|
relation
|
2457
2744
|
}
|
2458
2745
|
}
|
2746
|
+
details {
|
2747
|
+
modelService
|
2748
|
+
model
|
2749
|
+
supportsToolCalling
|
2750
|
+
sourceCount
|
2751
|
+
observableCount
|
2752
|
+
toolCount
|
2753
|
+
renderedSourceCount
|
2754
|
+
renderedObservableCount
|
2755
|
+
renderedToolCount
|
2756
|
+
rankedSourceCount
|
2757
|
+
rankedObservableCount
|
2758
|
+
rankedToolCount
|
2759
|
+
tokenLimit
|
2760
|
+
completionTokenLimit
|
2761
|
+
sources
|
2762
|
+
formattedSources
|
2763
|
+
formattedObservables
|
2764
|
+
formattedInstructions
|
2765
|
+
formattedTools
|
2766
|
+
messages {
|
2767
|
+
role
|
2768
|
+
author
|
2769
|
+
message
|
2770
|
+
citations {
|
2771
|
+
content {
|
2772
|
+
id
|
2773
|
+
name
|
2774
|
+
state
|
2775
|
+
originalDate
|
2776
|
+
identifier
|
2777
|
+
uri
|
2778
|
+
type
|
2779
|
+
fileType
|
2780
|
+
mimeType
|
2781
|
+
format
|
2782
|
+
formatName
|
2783
|
+
fileExtension
|
2784
|
+
fileName
|
2785
|
+
fileSize
|
2786
|
+
masterUri
|
2787
|
+
imageUri
|
2788
|
+
textUri
|
2789
|
+
audioUri
|
2790
|
+
transcriptUri
|
2791
|
+
summary
|
2792
|
+
customSummary
|
2793
|
+
keywords
|
2794
|
+
bullets
|
2795
|
+
headlines
|
2796
|
+
posts
|
2797
|
+
chapters
|
2798
|
+
questions
|
2799
|
+
video {
|
2800
|
+
width
|
2801
|
+
height
|
2802
|
+
duration
|
2803
|
+
make
|
2804
|
+
model
|
2805
|
+
software
|
2806
|
+
title
|
2807
|
+
description
|
2808
|
+
keywords
|
2809
|
+
author
|
2810
|
+
}
|
2811
|
+
audio {
|
2812
|
+
keywords
|
2813
|
+
author
|
2814
|
+
series
|
2815
|
+
episode
|
2816
|
+
episodeType
|
2817
|
+
season
|
2818
|
+
publisher
|
2819
|
+
copyright
|
2820
|
+
genre
|
2821
|
+
title
|
2822
|
+
description
|
2823
|
+
bitrate
|
2824
|
+
channels
|
2825
|
+
sampleRate
|
2826
|
+
bitsPerSample
|
2827
|
+
duration
|
2828
|
+
}
|
2829
|
+
image {
|
2830
|
+
width
|
2831
|
+
height
|
2832
|
+
resolutionX
|
2833
|
+
resolutionY
|
2834
|
+
bitsPerComponent
|
2835
|
+
components
|
2836
|
+
projectionType
|
2837
|
+
orientation
|
2838
|
+
description
|
2839
|
+
make
|
2840
|
+
model
|
2841
|
+
software
|
2842
|
+
lens
|
2843
|
+
focalLength
|
2844
|
+
exposureTime
|
2845
|
+
fNumber
|
2846
|
+
iso
|
2847
|
+
heading
|
2848
|
+
pitch
|
2849
|
+
}
|
2850
|
+
document {
|
2851
|
+
title
|
2852
|
+
subject
|
2853
|
+
summary
|
2854
|
+
author
|
2855
|
+
publisher
|
2856
|
+
description
|
2857
|
+
keywords
|
2858
|
+
pageCount
|
2859
|
+
worksheetCount
|
2860
|
+
slideCount
|
2861
|
+
wordCount
|
2862
|
+
lineCount
|
2863
|
+
paragraphCount
|
2864
|
+
isEncrypted
|
2865
|
+
hasDigitalSignature
|
2866
|
+
}
|
2867
|
+
}
|
2868
|
+
index
|
2869
|
+
text
|
2870
|
+
startTime
|
2871
|
+
endTime
|
2872
|
+
pageNumber
|
2873
|
+
frameNumber
|
2874
|
+
}
|
2875
|
+
toolCalls {
|
2876
|
+
id
|
2877
|
+
name
|
2878
|
+
arguments
|
2879
|
+
}
|
2880
|
+
tokens
|
2881
|
+
throughput
|
2882
|
+
completionTime
|
2883
|
+
timestamp
|
2884
|
+
modelService
|
2885
|
+
model
|
2886
|
+
}
|
2887
|
+
assistantMessage
|
2888
|
+
}
|
2459
2889
|
}
|
2460
2890
|
}
|
2461
2891
|
`;
|
@@ -2871,13 +3301,14 @@ exports.Prompt = (0, graphql_tag_1.default) `
|
|
2871
3301
|
}
|
2872
3302
|
`;
|
2873
3303
|
exports.PromptConversation = (0, graphql_tag_1.default) `
|
2874
|
-
mutation PromptConversation($prompt: String!, $id: ID, $specification: EntityReferenceInput, $tools: [ToolDefinitionInput!], $requireTool: Boolean, $correlationId: String) {
|
3304
|
+
mutation PromptConversation($prompt: String!, $id: ID, $specification: EntityReferenceInput, $tools: [ToolDefinitionInput!], $requireTool: Boolean, $includeDetails: Boolean, $correlationId: String) {
|
2875
3305
|
promptConversation(
|
2876
3306
|
prompt: $prompt
|
2877
3307
|
id: $id
|
2878
3308
|
specification: $specification
|
2879
3309
|
tools: $tools
|
2880
3310
|
requireTool: $requireTool
|
3311
|
+
includeDetails: $includeDetails
|
2881
3312
|
correlationId: $correlationId
|
2882
3313
|
) {
|
2883
3314
|
conversation {
|
@@ -3035,6 +3466,149 @@ exports.PromptConversation = (0, graphql_tag_1.default) `
|
|
3035
3466
|
relation
|
3036
3467
|
}
|
3037
3468
|
}
|
3469
|
+
details {
|
3470
|
+
modelService
|
3471
|
+
model
|
3472
|
+
supportsToolCalling
|
3473
|
+
sourceCount
|
3474
|
+
observableCount
|
3475
|
+
toolCount
|
3476
|
+
renderedSourceCount
|
3477
|
+
renderedObservableCount
|
3478
|
+
renderedToolCount
|
3479
|
+
rankedSourceCount
|
3480
|
+
rankedObservableCount
|
3481
|
+
rankedToolCount
|
3482
|
+
tokenLimit
|
3483
|
+
completionTokenLimit
|
3484
|
+
sources
|
3485
|
+
formattedSources
|
3486
|
+
formattedObservables
|
3487
|
+
formattedInstructions
|
3488
|
+
formattedTools
|
3489
|
+
messages {
|
3490
|
+
role
|
3491
|
+
author
|
3492
|
+
message
|
3493
|
+
citations {
|
3494
|
+
content {
|
3495
|
+
id
|
3496
|
+
name
|
3497
|
+
state
|
3498
|
+
originalDate
|
3499
|
+
identifier
|
3500
|
+
uri
|
3501
|
+
type
|
3502
|
+
fileType
|
3503
|
+
mimeType
|
3504
|
+
format
|
3505
|
+
formatName
|
3506
|
+
fileExtension
|
3507
|
+
fileName
|
3508
|
+
fileSize
|
3509
|
+
masterUri
|
3510
|
+
imageUri
|
3511
|
+
textUri
|
3512
|
+
audioUri
|
3513
|
+
transcriptUri
|
3514
|
+
summary
|
3515
|
+
customSummary
|
3516
|
+
keywords
|
3517
|
+
bullets
|
3518
|
+
headlines
|
3519
|
+
posts
|
3520
|
+
chapters
|
3521
|
+
questions
|
3522
|
+
video {
|
3523
|
+
width
|
3524
|
+
height
|
3525
|
+
duration
|
3526
|
+
make
|
3527
|
+
model
|
3528
|
+
software
|
3529
|
+
title
|
3530
|
+
description
|
3531
|
+
keywords
|
3532
|
+
author
|
3533
|
+
}
|
3534
|
+
audio {
|
3535
|
+
keywords
|
3536
|
+
author
|
3537
|
+
series
|
3538
|
+
episode
|
3539
|
+
episodeType
|
3540
|
+
season
|
3541
|
+
publisher
|
3542
|
+
copyright
|
3543
|
+
genre
|
3544
|
+
title
|
3545
|
+
description
|
3546
|
+
bitrate
|
3547
|
+
channels
|
3548
|
+
sampleRate
|
3549
|
+
bitsPerSample
|
3550
|
+
duration
|
3551
|
+
}
|
3552
|
+
image {
|
3553
|
+
width
|
3554
|
+
height
|
3555
|
+
resolutionX
|
3556
|
+
resolutionY
|
3557
|
+
bitsPerComponent
|
3558
|
+
components
|
3559
|
+
projectionType
|
3560
|
+
orientation
|
3561
|
+
description
|
3562
|
+
make
|
3563
|
+
model
|
3564
|
+
software
|
3565
|
+
lens
|
3566
|
+
focalLength
|
3567
|
+
exposureTime
|
3568
|
+
fNumber
|
3569
|
+
iso
|
3570
|
+
heading
|
3571
|
+
pitch
|
3572
|
+
}
|
3573
|
+
document {
|
3574
|
+
title
|
3575
|
+
subject
|
3576
|
+
summary
|
3577
|
+
author
|
3578
|
+
publisher
|
3579
|
+
description
|
3580
|
+
keywords
|
3581
|
+
pageCount
|
3582
|
+
worksheetCount
|
3583
|
+
slideCount
|
3584
|
+
wordCount
|
3585
|
+
lineCount
|
3586
|
+
paragraphCount
|
3587
|
+
isEncrypted
|
3588
|
+
hasDigitalSignature
|
3589
|
+
}
|
3590
|
+
}
|
3591
|
+
index
|
3592
|
+
text
|
3593
|
+
startTime
|
3594
|
+
endTime
|
3595
|
+
pageNumber
|
3596
|
+
frameNumber
|
3597
|
+
}
|
3598
|
+
toolCalls {
|
3599
|
+
id
|
3600
|
+
name
|
3601
|
+
arguments
|
3602
|
+
}
|
3603
|
+
tokens
|
3604
|
+
throughput
|
3605
|
+
completionTime
|
3606
|
+
timestamp
|
3607
|
+
modelService
|
3608
|
+
model
|
3609
|
+
}
|
3610
|
+
assistantMessage
|
3611
|
+
}
|
3038
3612
|
}
|
3039
3613
|
}
|
3040
3614
|
`;
|
@@ -6437,6 +7011,7 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
|
|
6437
7011
|
embedCitations
|
6438
7012
|
flattenCitations
|
6439
7013
|
enableFacets
|
7014
|
+
disableGuardrails
|
6440
7015
|
messagesWeight
|
6441
7016
|
contentsWeight
|
6442
7017
|
}
|
@@ -6741,6 +7316,7 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
|
|
6741
7316
|
embedCitations
|
6742
7317
|
flattenCitations
|
6743
7318
|
enableFacets
|
7319
|
+
disableGuardrails
|
6744
7320
|
messagesWeight
|
6745
7321
|
contentsWeight
|
6746
7322
|
}
|