pycarlo 0.10.192__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 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,
@@ -22466,6 +22476,16 @@
22466
22476
  "ofType": null
22467
22477
  }
22468
22478
  },
22479
+ {
22480
+ "defaultValue": null,
22481
+ "description": "Project filter",
22482
+ "name": "projectFilter",
22483
+ "type": {
22484
+ "kind": "INPUT_OBJECT",
22485
+ "name": "ProjectFilterInput",
22486
+ "ofType": null
22487
+ }
22488
+ },
22469
22489
  {
22470
22490
  "defaultValue": null,
22471
22491
  "description": "Dataset filter",
@@ -32336,6 +32356,12 @@
32336
32356
  {
32337
32357
  "description": null,
32338
32358
  "enumValues": [
32359
+ {
32360
+ "deprecationReason": null,
32361
+ "description": null,
32362
+ "isDeprecated": false,
32363
+ "name": "PROJECTS"
32364
+ },
32339
32365
  {
32340
32366
  "deprecationReason": null,
32341
32367
  "description": null,
@@ -37194,7 +37220,7 @@
37194
37220
  "deprecationReason": null,
37195
37221
  "description": null,
37196
37222
  "isDeprecated": false,
37197
- "name": "responseFormat",
37223
+ "name": "category",
37198
37224
  "type": {
37199
37225
  "kind": "SCALAR",
37200
37226
  "name": "String",
@@ -37206,7 +37232,7 @@
37206
37232
  "deprecationReason": null,
37207
37233
  "description": null,
37208
37234
  "isDeprecated": false,
37209
- "name": "category",
37235
+ "name": "prompt",
37210
37236
  "type": {
37211
37237
  "kind": "SCALAR",
37212
37238
  "name": "String",
@@ -37218,7 +37244,7 @@
37218
37244
  "deprecationReason": null,
37219
37245
  "description": null,
37220
37246
  "isDeprecated": false,
37221
- "name": "prompt",
37247
+ "name": "scoreField",
37222
37248
  "type": {
37223
37249
  "kind": "SCALAR",
37224
37250
  "name": "String",
@@ -37230,7 +37256,7 @@
37230
37256
  "deprecationReason": null,
37231
37257
  "description": null,
37232
37258
  "isDeprecated": false,
37233
- "name": "scoreField",
37259
+ "name": "outputType",
37234
37260
  "type": {
37235
37261
  "kind": "SCALAR",
37236
37262
  "name": "String",
@@ -37242,7 +37268,7 @@
37242
37268
  "deprecationReason": null,
37243
37269
  "description": null,
37244
37270
  "isDeprecated": false,
37245
- "name": "outputType",
37271
+ "name": "outputDescription",
37246
37272
  "type": {
37247
37273
  "kind": "SCALAR",
37248
37274
  "name": "String",
@@ -134747,6 +134773,31 @@
134747
134773
  "name": "TagFilterInput",
134748
134774
  "possibleTypes": null
134749
134775
  },
134776
+ {
134777
+ "description": null,
134778
+ "enumValues": null,
134779
+ "fields": null,
134780
+ "inputFields": [
134781
+ {
134782
+ "defaultValue": null,
134783
+ "description": "MCONs of projects to filter by.",
134784
+ "name": "projectMcons",
134785
+ "type": {
134786
+ "kind": "LIST",
134787
+ "name": null,
134788
+ "ofType": {
134789
+ "kind": "SCALAR",
134790
+ "name": "String",
134791
+ "ofType": null
134792
+ }
134793
+ }
134794
+ }
134795
+ ],
134796
+ "interfaces": null,
134797
+ "kind": "INPUT_OBJECT",
134798
+ "name": "ProjectFilterInput",
134799
+ "possibleTypes": null
134800
+ },
134750
134801
  {
134751
134802
  "description": null,
134752
134803
  "enumValues": null,
pycarlo/lib/schema.py CHANGED
@@ -2224,6 +2224,7 @@ class FacetType(sgqlc.types.Enum):
2224
2224
  * `DATASETS`None
2225
2225
  * `DATA_PRODUCTS`None
2226
2226
  * `ETL_TYPES`None
2227
+ * `PROJECTS`None
2227
2228
  * `RESOURCE_TYPES`None
2228
2229
  * `TAGS`None
2229
2230
  * `TAG_NAMES`None
@@ -2237,6 +2238,7 @@ class FacetType(sgqlc.types.Enum):
2237
2238
  "DATASETS",
2238
2239
  "DATA_PRODUCTS",
2239
2240
  "ETL_TYPES",
2241
+ "PROJECTS",
2240
2242
  "RESOURCE_TYPES",
2241
2243
  "TAGS",
2242
2244
  "TAG_NAMES",
@@ -8461,6 +8463,13 @@ class PowerBiUpdateConnectionDetails(sgqlc.types.Input):
8461
8463
  """
8462
8464
 
8463
8465
 
8466
+ class ProjectFilterInput(sgqlc.types.Input):
8467
+ __schema__ = schema
8468
+ __field_names__ = ("project_mcons",)
8469
+ project_mcons = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="projectMcons")
8470
+ """MCONs of projects to filter by."""
8471
+
8472
+
8464
8473
  class PullRequestFilterInput(sgqlc.types.Input):
8465
8474
  __schema__ = schema
8466
8475
  __field_names__ = ("filter_name", "values")
@@ -50697,6 +50706,10 @@ class Query(sgqlc.types.Type):
50697
50706
  MonitorSamplingConfigInput, graphql_name="rowSamplingConfig", default=None
50698
50707
  ),
50699
50708
  ),
50709
+ (
50710
+ "include_explanation",
50711
+ sgqlc.types.Arg(Boolean, graphql_name="includeExplanation", default=False),
50712
+ ),
50700
50713
  )
50701
50714
  ),
50702
50715
  )
@@ -50724,6 +50737,9 @@ class Query(sgqlc.types.Type):
50724
50737
  rows from the sampling query (default: `false`)
50725
50738
  * `row_sampling_config` (`MonitorSamplingConfigInput`): Sampling
50726
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`)
50727
50743
  """
50728
50744
 
50729
50745
  get_field_health_sampling_conditions = sgqlc.types.Field(
@@ -57257,6 +57273,10 @@ class Query(sgqlc.types.Type):
57257
57273
  "is_monitored",
57258
57274
  sgqlc.types.Arg(Boolean, graphql_name="isMonitored", default=None),
57259
57275
  ),
57276
+ (
57277
+ "project_filter",
57278
+ sgqlc.types.Arg(ProjectFilterInput, graphql_name="projectFilter", default=None),
57279
+ ),
57260
57280
  (
57261
57281
  "dataset_filter",
57262
57282
  sgqlc.types.Arg(DatasetFilterInput, graphql_name="datasetFilter", default=None),
@@ -57333,6 +57353,7 @@ class Query(sgqlc.types.Type):
57333
57353
  not support this monitor type
57334
57354
  * `is_monitored` (`Boolean`): Filter by is_monitored status. Only
57335
57355
  applicable to tables
57356
+ * `project_filter` (`ProjectFilterInput`): Project filter
57336
57357
  * `dataset_filter` (`DatasetFilterInput`): Dataset filter
57337
57358
  * `data_product_ids` (`[UUID!]`): Filter by data product IDs
57338
57359
  * `resource_types` (`[String]`): Filter by resource types
@@ -67376,11 +67397,11 @@ class TransformFunction(sgqlc.types.Type):
67376
67397
  "supported_types",
67377
67398
  "required_type",
67378
67399
  "supported_connections",
67379
- "response_format",
67380
67400
  "category",
67381
67401
  "prompt",
67382
67402
  "score_field",
67383
67403
  "output_type",
67404
+ "output_description",
67384
67405
  "supports_field_range",
67385
67406
  "supported_output_types",
67386
67407
  "icon",
@@ -67408,8 +67429,6 @@ class TransformFunction(sgqlc.types.Type):
67408
67429
  graphql_name="supportedConnections",
67409
67430
  )
67410
67431
 
67411
- response_format = sgqlc.types.Field(String, graphql_name="responseFormat")
67412
-
67413
67432
  category = sgqlc.types.Field(String, graphql_name="category")
67414
67433
 
67415
67434
  prompt = sgqlc.types.Field(String, graphql_name="prompt")
@@ -67418,6 +67437,8 @@ class TransformFunction(sgqlc.types.Type):
67418
67437
 
67419
67438
  output_type = sgqlc.types.Field(String, graphql_name="outputType")
67420
67439
 
67440
+ output_description = sgqlc.types.Field(String, graphql_name="outputDescription")
67441
+
67421
67442
  supports_field_range = sgqlc.types.Field(
67422
67443
  sgqlc.types.non_null(Boolean), graphql_name="supportsFieldRange"
67423
67444
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.192
3
+ Version: 0.10.194
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -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=HAH-9H1oU06qSXq4aUsCTXqR6Df6sSCEscN16AZYBfQ,6334609
39
- pycarlo/lib/schema.py,sha256=pTr0LD0BNmQKrwrbLXvmTJMDShkTZCZkL5JZDmZR7Ec,2758268
40
- pycarlo-0.10.192.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.192.dist-info/METADATA,sha256=AeguGq36qe2gUrTJkVmkvGaxF8qJ9UtFTpXWkWt0oZ0,8742
42
- pycarlo-0.10.192.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.192.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.192.dist-info/RECORD,,
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,,