pycarlo 0.10.193__py3-none-any.whl → 0.10.194__py3-none-any.whl
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.
- pycarlo/lib/schema.json +15 -5
- pycarlo/lib/schema.py +10 -3
- {pycarlo-0.10.193.dist-info → pycarlo-0.10.194.dist-info}/METADATA +1 -1
- {pycarlo-0.10.193.dist-info → pycarlo-0.10.194.dist-info}/RECORD +7 -7
- {pycarlo-0.10.193.dist-info → pycarlo-0.10.194.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.193.dist-info → pycarlo-0.10.194.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.193.dist-info → pycarlo-0.10.194.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -10308,6 +10308,16 @@
|
|
|
10308
10308
|
"name": "MonitorSamplingConfigInput",
|
|
10309
10309
|
"ofType": null
|
|
10310
10310
|
}
|
|
10311
|
+
},
|
|
10312
|
+
{
|
|
10313
|
+
"defaultValue": "false",
|
|
10314
|
+
"description": "Include the explanation field in the results (only supported for agent monitors, and only included when evaluating prompts)",
|
|
10315
|
+
"name": "includeExplanation",
|
|
10316
|
+
"type": {
|
|
10317
|
+
"kind": "SCALAR",
|
|
10318
|
+
"name": "Boolean",
|
|
10319
|
+
"ofType": null
|
|
10320
|
+
}
|
|
10311
10321
|
}
|
|
10312
10322
|
],
|
|
10313
10323
|
"deprecationReason": null,
|
|
@@ -37210,7 +37220,7 @@
|
|
|
37210
37220
|
"deprecationReason": null,
|
|
37211
37221
|
"description": null,
|
|
37212
37222
|
"isDeprecated": false,
|
|
37213
|
-
"name": "
|
|
37223
|
+
"name": "category",
|
|
37214
37224
|
"type": {
|
|
37215
37225
|
"kind": "SCALAR",
|
|
37216
37226
|
"name": "String",
|
|
@@ -37222,7 +37232,7 @@
|
|
|
37222
37232
|
"deprecationReason": null,
|
|
37223
37233
|
"description": null,
|
|
37224
37234
|
"isDeprecated": false,
|
|
37225
|
-
"name": "
|
|
37235
|
+
"name": "prompt",
|
|
37226
37236
|
"type": {
|
|
37227
37237
|
"kind": "SCALAR",
|
|
37228
37238
|
"name": "String",
|
|
@@ -37234,7 +37244,7 @@
|
|
|
37234
37244
|
"deprecationReason": null,
|
|
37235
37245
|
"description": null,
|
|
37236
37246
|
"isDeprecated": false,
|
|
37237
|
-
"name": "
|
|
37247
|
+
"name": "scoreField",
|
|
37238
37248
|
"type": {
|
|
37239
37249
|
"kind": "SCALAR",
|
|
37240
37250
|
"name": "String",
|
|
@@ -37246,7 +37256,7 @@
|
|
|
37246
37256
|
"deprecationReason": null,
|
|
37247
37257
|
"description": null,
|
|
37248
37258
|
"isDeprecated": false,
|
|
37249
|
-
"name": "
|
|
37259
|
+
"name": "outputType",
|
|
37250
37260
|
"type": {
|
|
37251
37261
|
"kind": "SCALAR",
|
|
37252
37262
|
"name": "String",
|
|
@@ -37258,7 +37268,7 @@
|
|
|
37258
37268
|
"deprecationReason": null,
|
|
37259
37269
|
"description": null,
|
|
37260
37270
|
"isDeprecated": false,
|
|
37261
|
-
"name": "
|
|
37271
|
+
"name": "outputDescription",
|
|
37262
37272
|
"type": {
|
|
37263
37273
|
"kind": "SCALAR",
|
|
37264
37274
|
"name": "String",
|
pycarlo/lib/schema.py
CHANGED
|
@@ -50706,6 +50706,10 @@ class Query(sgqlc.types.Type):
|
|
|
50706
50706
|
MonitorSamplingConfigInput, graphql_name="rowSamplingConfig", default=None
|
|
50707
50707
|
),
|
|
50708
50708
|
),
|
|
50709
|
+
(
|
|
50710
|
+
"include_explanation",
|
|
50711
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeExplanation", default=False),
|
|
50712
|
+
),
|
|
50709
50713
|
)
|
|
50710
50714
|
),
|
|
50711
50715
|
)
|
|
@@ -50733,6 +50737,9 @@ class Query(sgqlc.types.Type):
|
|
|
50733
50737
|
rows from the sampling query (default: `false`)
|
|
50734
50738
|
* `row_sampling_config` (`MonitorSamplingConfigInput`): Sampling
|
|
50735
50739
|
configuration to only read a subset of the data
|
|
50740
|
+
* `include_explanation` (`Boolean`): Include the explanation field
|
|
50741
|
+
in the results (only supported for agent monitors, and only
|
|
50742
|
+
included when evaluating prompts) (default: `false`)
|
|
50736
50743
|
"""
|
|
50737
50744
|
|
|
50738
50745
|
get_field_health_sampling_conditions = sgqlc.types.Field(
|
|
@@ -67390,11 +67397,11 @@ class TransformFunction(sgqlc.types.Type):
|
|
|
67390
67397
|
"supported_types",
|
|
67391
67398
|
"required_type",
|
|
67392
67399
|
"supported_connections",
|
|
67393
|
-
"response_format",
|
|
67394
67400
|
"category",
|
|
67395
67401
|
"prompt",
|
|
67396
67402
|
"score_field",
|
|
67397
67403
|
"output_type",
|
|
67404
|
+
"output_description",
|
|
67398
67405
|
"supports_field_range",
|
|
67399
67406
|
"supported_output_types",
|
|
67400
67407
|
"icon",
|
|
@@ -67422,8 +67429,6 @@ class TransformFunction(sgqlc.types.Type):
|
|
|
67422
67429
|
graphql_name="supportedConnections",
|
|
67423
67430
|
)
|
|
67424
67431
|
|
|
67425
|
-
response_format = sgqlc.types.Field(String, graphql_name="responseFormat")
|
|
67426
|
-
|
|
67427
67432
|
category = sgqlc.types.Field(String, graphql_name="category")
|
|
67428
67433
|
|
|
67429
67434
|
prompt = sgqlc.types.Field(String, graphql_name="prompt")
|
|
@@ -67432,6 +67437,8 @@ class TransformFunction(sgqlc.types.Type):
|
|
|
67432
67437
|
|
|
67433
67438
|
output_type = sgqlc.types.Field(String, graphql_name="outputType")
|
|
67434
67439
|
|
|
67440
|
+
output_description = sgqlc.types.Field(String, graphql_name="outputDescription")
|
|
67441
|
+
|
|
67435
67442
|
supports_field_range = sgqlc.types.Field(
|
|
67436
67443
|
sgqlc.types.non_null(Boolean), graphql_name="supportsFieldRange"
|
|
67437
67444
|
)
|
|
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
35
35
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
36
36
|
pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
|
|
37
37
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pycarlo/lib/schema.json,sha256=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=UEjfprp10pXE6593WmYyj2kER6DuIxBIkc84HUTPBVM,6336286
|
|
39
|
+
pycarlo/lib/schema.py,sha256=plDIF2K1mq-nUIksRS9WNxXZ1Pz25tIC4somKPrD4F4,2759178
|
|
40
|
+
pycarlo-0.10.194.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.194.dist-info/METADATA,sha256=4weWf_U3sSZg5WXxeS1bDNjbjMikBFDSoPSeoc0iv7k,8742
|
|
42
|
+
pycarlo-0.10.194.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.194.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.194.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|