deeprails 1.8.0__py3-none-any.whl → 1.9.0__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.

Potentially problematic release.


This version of deeprails might be problematic. Click here for more details.

deeprails/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "deeprails"
4
- __version__ = "1.8.0" # x-release-please-version
4
+ __version__ = "1.9.0" # x-release-please-version
@@ -54,7 +54,7 @@ class DefendResource(SyncAPIResource):
54
54
  automatic_hallucination_tolerance_levels: Dict[str, Literal["low", "medium", "high"]] | Omit = omit,
55
55
  custom_hallucination_threshold_values: Dict[str, float] | Omit = omit,
56
56
  description: str | Omit = omit,
57
- max_improvement_attempt: int | Omit = omit,
57
+ max_improvement_attempts: int | Omit = omit,
58
58
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
59
59
  # The extra values given here take precedence over values defined on the client or passed to this method.
60
60
  extra_headers: Headers | None = None,
@@ -92,7 +92,7 @@ class DefendResource(SyncAPIResource):
92
92
 
93
93
  description: Description for the workflow.
94
94
 
95
- max_improvement_attempt: Max. number of improvement action retries until a given event passes the
95
+ max_improvement_attempts: Max. number of improvement action retries until a given event passes the
96
96
  guardrails. Defaults to 10.
97
97
 
98
98
  extra_headers: Send extra headers
@@ -113,7 +113,7 @@ class DefendResource(SyncAPIResource):
113
113
  "automatic_hallucination_tolerance_levels": automatic_hallucination_tolerance_levels,
114
114
  "custom_hallucination_threshold_values": custom_hallucination_threshold_values,
115
115
  "description": description,
116
- "max_improvement_attempt": max_improvement_attempt,
116
+ "max_improvement_attempts": max_improvement_attempts,
117
117
  },
118
118
  defend_create_workflow_params.DefendCreateWorkflowParams,
119
119
  ),
@@ -214,7 +214,7 @@ class DefendResource(SyncAPIResource):
214
214
 
215
215
  Args:
216
216
  model_input: A dictionary of inputs sent to the LLM to generate output. The dictionary must
217
- contain at least `user_prompt` or `system_prompt` field. For the
217
+ contain at least a `user_prompt` field or a `system_prompt` field. For the
218
218
  ground_truth_adherence guardrail metric, `ground_truth` should be provided.
219
219
 
220
220
  model_output: Output generated by the LLM to be evaluated.
@@ -332,7 +332,7 @@ class AsyncDefendResource(AsyncAPIResource):
332
332
  automatic_hallucination_tolerance_levels: Dict[str, Literal["low", "medium", "high"]] | Omit = omit,
333
333
  custom_hallucination_threshold_values: Dict[str, float] | Omit = omit,
334
334
  description: str | Omit = omit,
335
- max_improvement_attempt: int | Omit = omit,
335
+ max_improvement_attempts: int | Omit = omit,
336
336
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
337
337
  # The extra values given here take precedence over values defined on the client or passed to this method.
338
338
  extra_headers: Headers | None = None,
@@ -370,7 +370,7 @@ class AsyncDefendResource(AsyncAPIResource):
370
370
 
371
371
  description: Description for the workflow.
372
372
 
373
- max_improvement_attempt: Max. number of improvement action retries until a given event passes the
373
+ max_improvement_attempts: Max. number of improvement action retries until a given event passes the
374
374
  guardrails. Defaults to 10.
375
375
 
376
376
  extra_headers: Send extra headers
@@ -391,7 +391,7 @@ class AsyncDefendResource(AsyncAPIResource):
391
391
  "automatic_hallucination_tolerance_levels": automatic_hallucination_tolerance_levels,
392
392
  "custom_hallucination_threshold_values": custom_hallucination_threshold_values,
393
393
  "description": description,
394
- "max_improvement_attempt": max_improvement_attempt,
394
+ "max_improvement_attempts": max_improvement_attempts,
395
395
  },
396
396
  defend_create_workflow_params.DefendCreateWorkflowParams,
397
397
  ),
@@ -492,7 +492,7 @@ class AsyncDefendResource(AsyncAPIResource):
492
492
 
493
493
  Args:
494
494
  model_input: A dictionary of inputs sent to the LLM to generate output. The dictionary must
495
- contain at least `user_prompt` or `system_prompt` field. For the
495
+ contain at least a `user_prompt` field or a `system_prompt` field. For the
496
496
  ground_truth_adherence guardrail metric, `ground_truth` should be provided.
497
497
 
498
498
  model_output: Output generated by the LLM to be evaluated.
@@ -76,7 +76,7 @@ class EvaluateResource(SyncAPIResource):
76
76
 
77
77
  Args:
78
78
  model_input: A dictionary of inputs sent to the LLM to generate output. The dictionary must
79
- contain at least `user_prompt` or `system_prompt` field. For
79
+ contain at least a `user_prompt` field or a `system_prompt` field. For
80
80
  ground_truth_adherence guardrail metric, `ground_truth` should be provided.
81
81
 
82
82
  model_output: Output generated by the LLM to be evaluated.
@@ -207,7 +207,7 @@ class AsyncEvaluateResource(AsyncAPIResource):
207
207
 
208
208
  Args:
209
209
  model_input: A dictionary of inputs sent to the LLM to generate output. The dictionary must
210
- contain at least `user_prompt` or `system_prompt` field. For
210
+ contain at least a `user_prompt` field or a `system_prompt` field. For
211
211
  ground_truth_adherence guardrail metric, `ground_truth` should be provided.
212
212
 
213
213
  model_output: Output generated by the LLM to be evaluated.
@@ -19,9 +19,9 @@ from .._response import (
19
19
  async_to_streamed_response_wrapper,
20
20
  )
21
21
  from .._base_client import make_request_options
22
- from ..types.api_response import APIResponse
23
- from ..types.monitor_retrieve_response import MonitorRetrieveResponse
24
- from ..types.monitor_submit_event_response import MonitorSubmitEventResponse
22
+ from ..types.monitor_response import MonitorResponse
23
+ from ..types.monitor_event_response import MonitorEventResponse
24
+ from ..types.monitor_detail_response import MonitorDetailResponse
25
25
 
26
26
  __all__ = ["MonitorResource", "AsyncMonitorResource"]
27
27
 
@@ -57,7 +57,7 @@ class MonitorResource(SyncAPIResource):
57
57
  extra_query: Query | None = None,
58
58
  extra_body: Body | None = None,
59
59
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
60
- ) -> APIResponse:
60
+ ) -> MonitorResponse:
61
61
  """
62
62
  Use this endpoint to create a new monitor to evaluate model inputs and outputs
63
63
  using guardrails
@@ -87,7 +87,7 @@ class MonitorResource(SyncAPIResource):
87
87
  options=make_request_options(
88
88
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
89
89
  ),
90
- cast_to=APIResponse,
90
+ cast_to=MonitorResponse,
91
91
  )
92
92
 
93
93
  def retrieve(
@@ -101,7 +101,7 @@ class MonitorResource(SyncAPIResource):
101
101
  extra_query: Query | None = None,
102
102
  extra_body: Body | None = None,
103
103
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
104
- ) -> MonitorRetrieveResponse:
104
+ ) -> MonitorDetailResponse:
105
105
  """
106
106
  Use this endpoint to retrieve the details and evaluations associated with a
107
107
  specific monitor
@@ -128,7 +128,7 @@ class MonitorResource(SyncAPIResource):
128
128
  timeout=timeout,
129
129
  query=maybe_transform({"limit": limit}, monitor_retrieve_params.MonitorRetrieveParams),
130
130
  ),
131
- cast_to=MonitorRetrieveResponse,
131
+ cast_to=MonitorDetailResponse,
132
132
  )
133
133
 
134
134
  def update(
@@ -144,7 +144,7 @@ class MonitorResource(SyncAPIResource):
144
144
  extra_query: Query | None = None,
145
145
  extra_body: Body | None = None,
146
146
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
147
- ) -> APIResponse:
147
+ ) -> MonitorResponse:
148
148
  """
149
149
  Use this endpoint to update the name, description, or status of an existing
150
150
  monitor
@@ -180,7 +180,7 @@ class MonitorResource(SyncAPIResource):
180
180
  options=make_request_options(
181
181
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
182
182
  ),
183
- cast_to=APIResponse,
183
+ cast_to=MonitorResponse,
184
184
  )
185
185
 
186
186
  def submit_event(
@@ -208,7 +208,7 @@ class MonitorResource(SyncAPIResource):
208
208
  extra_query: Query | None = None,
209
209
  extra_body: Body | None = None,
210
210
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
211
- ) -> MonitorSubmitEventResponse:
211
+ ) -> MonitorEventResponse:
212
212
  """
213
213
  Use this endpoint to submit a model input and output pair to a monitor for
214
214
  evaluation
@@ -220,7 +220,7 @@ class MonitorResource(SyncAPIResource):
220
220
  `ground_truth_adherence`, and/or `comprehensive_safety`.
221
221
 
222
222
  model_input: A dictionary of inputs sent to the LLM to generate output. The dictionary must
223
- contain at least a `user_prompt` or `system_prompt` field. For
223
+ contain at least a `user_prompt` field or a `system_prompt` field. For
224
224
  ground_truth_adherence guardrail metric, `ground_truth` should be provided.
225
225
 
226
226
  model_output: Output generated by the LLM to be evaluated.
@@ -260,7 +260,7 @@ class MonitorResource(SyncAPIResource):
260
260
  options=make_request_options(
261
261
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
262
262
  ),
263
- cast_to=MonitorSubmitEventResponse,
263
+ cast_to=MonitorEventResponse,
264
264
  )
265
265
 
266
266
 
@@ -295,7 +295,7 @@ class AsyncMonitorResource(AsyncAPIResource):
295
295
  extra_query: Query | None = None,
296
296
  extra_body: Body | None = None,
297
297
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
298
- ) -> APIResponse:
298
+ ) -> MonitorResponse:
299
299
  """
300
300
  Use this endpoint to create a new monitor to evaluate model inputs and outputs
301
301
  using guardrails
@@ -325,7 +325,7 @@ class AsyncMonitorResource(AsyncAPIResource):
325
325
  options=make_request_options(
326
326
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
327
327
  ),
328
- cast_to=APIResponse,
328
+ cast_to=MonitorResponse,
329
329
  )
330
330
 
331
331
  async def retrieve(
@@ -339,7 +339,7 @@ class AsyncMonitorResource(AsyncAPIResource):
339
339
  extra_query: Query | None = None,
340
340
  extra_body: Body | None = None,
341
341
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
342
- ) -> MonitorRetrieveResponse:
342
+ ) -> MonitorDetailResponse:
343
343
  """
344
344
  Use this endpoint to retrieve the details and evaluations associated with a
345
345
  specific monitor
@@ -366,7 +366,7 @@ class AsyncMonitorResource(AsyncAPIResource):
366
366
  timeout=timeout,
367
367
  query=await async_maybe_transform({"limit": limit}, monitor_retrieve_params.MonitorRetrieveParams),
368
368
  ),
369
- cast_to=MonitorRetrieveResponse,
369
+ cast_to=MonitorDetailResponse,
370
370
  )
371
371
 
372
372
  async def update(
@@ -382,7 +382,7 @@ class AsyncMonitorResource(AsyncAPIResource):
382
382
  extra_query: Query | None = None,
383
383
  extra_body: Body | None = None,
384
384
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
385
- ) -> APIResponse:
385
+ ) -> MonitorResponse:
386
386
  """
387
387
  Use this endpoint to update the name, description, or status of an existing
388
388
  monitor
@@ -418,7 +418,7 @@ class AsyncMonitorResource(AsyncAPIResource):
418
418
  options=make_request_options(
419
419
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
420
420
  ),
421
- cast_to=APIResponse,
421
+ cast_to=MonitorResponse,
422
422
  )
423
423
 
424
424
  async def submit_event(
@@ -446,7 +446,7 @@ class AsyncMonitorResource(AsyncAPIResource):
446
446
  extra_query: Query | None = None,
447
447
  extra_body: Body | None = None,
448
448
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
449
- ) -> MonitorSubmitEventResponse:
449
+ ) -> MonitorEventResponse:
450
450
  """
451
451
  Use this endpoint to submit a model input and output pair to a monitor for
452
452
  evaluation
@@ -458,7 +458,7 @@ class AsyncMonitorResource(AsyncAPIResource):
458
458
  `ground_truth_adherence`, and/or `comprehensive_safety`.
459
459
 
460
460
  model_input: A dictionary of inputs sent to the LLM to generate output. The dictionary must
461
- contain at least a `user_prompt` or `system_prompt` field. For
461
+ contain at least a `user_prompt` field or a `system_prompt` field. For
462
462
  ground_truth_adherence guardrail metric, `ground_truth` should be provided.
463
463
 
464
464
  model_output: Output generated by the LLM to be evaluated.
@@ -498,7 +498,7 @@ class AsyncMonitorResource(AsyncAPIResource):
498
498
  options=make_request_options(
499
499
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
500
500
  ),
501
- cast_to=MonitorSubmitEventResponse,
501
+ cast_to=MonitorEventResponse,
502
502
  )
503
503
 
504
504
 
@@ -3,16 +3,16 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  from .evaluation import Evaluation as Evaluation
6
- from .api_response import APIResponse as APIResponse
7
6
  from .defend_response import DefendResponse as DefendResponse
7
+ from .monitor_response import MonitorResponse as MonitorResponse
8
8
  from .monitor_create_params import MonitorCreateParams as MonitorCreateParams
9
9
  from .monitor_update_params import MonitorUpdateParams as MonitorUpdateParams
10
10
  from .evaluate_create_params import EvaluateCreateParams as EvaluateCreateParams
11
+ from .monitor_event_response import MonitorEventResponse as MonitorEventResponse
12
+ from .monitor_detail_response import MonitorDetailResponse as MonitorDetailResponse
11
13
  from .monitor_retrieve_params import MonitorRetrieveParams as MonitorRetrieveParams
12
14
  from .workflow_event_response import WorkflowEventResponse as WorkflowEventResponse
13
- from .monitor_retrieve_response import MonitorRetrieveResponse as MonitorRetrieveResponse
14
15
  from .defend_submit_event_params import DefendSubmitEventParams as DefendSubmitEventParams
15
16
  from .monitor_submit_event_params import MonitorSubmitEventParams as MonitorSubmitEventParams
16
17
  from .defend_create_workflow_params import DefendCreateWorkflowParams as DefendCreateWorkflowParams
17
18
  from .defend_update_workflow_params import DefendUpdateWorkflowParams as DefendUpdateWorkflowParams
18
- from .monitor_submit_event_response import MonitorSubmitEventResponse as MonitorSubmitEventResponse
@@ -48,7 +48,7 @@ class DefendCreateWorkflowParams(TypedDict, total=False):
48
48
  description: str
49
49
  """Description for the workflow."""
50
50
 
51
- max_improvement_attempt: int
51
+ max_improvement_attempts: int
52
52
  """Max.
53
53
 
54
54
  number of improvement action retries until a given event passes the guardrails.
@@ -31,7 +31,7 @@ class DefendResponse(BaseModel):
31
31
  Nothing does not attempt any improvement.
32
32
  """
33
33
 
34
- max_improvement_attempt: Optional[int] = None
34
+ max_improvement_attempts: Optional[int] = None
35
35
  """Max.
36
36
 
37
37
  number of improvement action retries until a given event passes the guardrails.
@@ -11,8 +11,9 @@ class DefendSubmitEventParams(TypedDict, total=False):
11
11
  model_input: Required[ModelInput]
12
12
  """A dictionary of inputs sent to the LLM to generate output.
13
13
 
14
- The dictionary must contain at least `user_prompt` or `system_prompt` field. For
15
- the ground_truth_adherence guardrail metric, `ground_truth` should be provided.
14
+ The dictionary must contain at least a `user_prompt` field or a `system_prompt`
15
+ field. For the ground_truth_adherence guardrail metric, `ground_truth` should be
16
+ provided.
16
17
  """
17
18
 
18
19
  model_output: Required[str]
@@ -36,7 +37,7 @@ class DefendSubmitEventParams(TypedDict, total=False):
36
37
 
37
38
  class ModelInput(TypedDict, total=False):
38
39
  ground_truth: str
39
- """The ground truth for evaluating Ground Truth Adherence guardrail."""
40
+ """The ground truth for evaluating the Ground Truth Adherence guardrail."""
40
41
 
41
42
  system_prompt: str
42
43
  """The system prompt used to generate the output."""
@@ -12,8 +12,9 @@ class EvaluateCreateParams(TypedDict, total=False):
12
12
  model_input: Required[ModelInput]
13
13
  """A dictionary of inputs sent to the LLM to generate output.
14
14
 
15
- The dictionary must contain at least `user_prompt` or `system_prompt` field. For
16
- ground_truth_adherence guardrail metric, `ground_truth` should be provided.
15
+ The dictionary must contain at least a `user_prompt` field or a `system_prompt`
16
+ field. For ground_truth_adherence guardrail metric, `ground_truth` should be
17
+ provided.
17
18
  """
18
19
 
19
20
  model_output: Required[str]
@@ -32,8 +32,9 @@ class Evaluation(BaseModel):
32
32
  api_model_input: ModelInput = FieldInfo(alias="model_input")
33
33
  """A dictionary of inputs sent to the LLM to generate output.
34
34
 
35
- The dictionary must contain at least `user_prompt` or `system_prompt` field. For
36
- ground_truth_adherence guardrail metric, `ground_truth` should be provided.
35
+ The dictionary must contain at least a `user_prompt` field or a `system_prompt`
36
+ field. For ground_truth_adherence guardrail metric, `ground_truth` should be
37
+ provided.
37
38
  """
38
39
 
39
40
  api_model_output: str = FieldInfo(alias="model_output")
@@ -7,10 +7,10 @@ from typing_extensions import Literal
7
7
  from .._models import BaseModel
8
8
  from .evaluation import Evaluation
9
9
 
10
- __all__ = ["MonitorRetrieveResponse", "Data", "DataStats"]
10
+ __all__ = ["MonitorDetailResponse", "Stats"]
11
11
 
12
12
 
13
- class DataStats(BaseModel):
13
+ class Stats(BaseModel):
14
14
  completed_evaluations: Optional[int] = None
15
15
  """Number of evaluations that completed successfully."""
16
16
 
@@ -27,7 +27,7 @@ class DataStats(BaseModel):
27
27
  """Total number of evaluations performed by this monitor."""
28
28
 
29
29
 
30
- class Data(BaseModel):
30
+ class MonitorDetailResponse(BaseModel):
31
31
  monitor_id: str
32
32
  """A unique monitor ID."""
33
33
 
@@ -53,7 +53,7 @@ class Data(BaseModel):
53
53
  Each one corresponds to a separate monitor event.
54
54
  """
55
55
 
56
- stats: Optional[DataStats] = None
56
+ stats: Optional[Stats] = None
57
57
  """
58
58
  Contains five fields used for stats of this monitor: total evaluations,
59
59
  completed evaluations, failed evaluations, queued evaluations, and in progress
@@ -65,16 +65,3 @@ class Data(BaseModel):
65
65
 
66
66
  user_id: Optional[str] = None
67
67
  """User ID of the user who created the monitor."""
68
-
69
-
70
- class MonitorRetrieveResponse(BaseModel):
71
- success: bool
72
- """Represents whether the request was completed successfully."""
73
-
74
- data: Optional[Data] = None
75
-
76
- message: Optional[str] = None
77
- """The accompanying message for the request.
78
-
79
- Includes error details when applicable.
80
- """
@@ -5,10 +5,10 @@ from datetime import datetime
5
5
 
6
6
  from .._models import BaseModel
7
7
 
8
- __all__ = ["MonitorSubmitEventResponse", "Data"]
8
+ __all__ = ["MonitorEventResponse"]
9
9
 
10
10
 
11
- class Data(BaseModel):
11
+ class MonitorEventResponse(BaseModel):
12
12
  evaluation_id: str
13
13
  """A unique evaluation ID associated with this event."""
14
14
 
@@ -20,16 +20,3 @@ class Data(BaseModel):
20
20
 
21
21
  created_at: Optional[datetime] = None
22
22
  """The time the monitor event was created in UTC."""
23
-
24
-
25
- class MonitorSubmitEventResponse(BaseModel):
26
- success: bool
27
- """Represents whether the request was completed successfully."""
28
-
29
- data: Optional[Data] = None
30
-
31
- message: Optional[str] = None
32
- """The accompanying message for the request.
33
-
34
- Includes error details when applicable.
35
- """
@@ -6,10 +6,10 @@ from typing_extensions import Literal
6
6
 
7
7
  from .._models import BaseModel
8
8
 
9
- __all__ = ["APIResponse", "Data"]
9
+ __all__ = ["MonitorResponse"]
10
10
 
11
11
 
12
- class Data(BaseModel):
12
+ class MonitorResponse(BaseModel):
13
13
  monitor_id: str
14
14
  """A unique monitor ID."""
15
15
 
@@ -34,16 +34,3 @@ class Data(BaseModel):
34
34
 
35
35
  user_id: Optional[str] = None
36
36
  """User ID of the user who created the monitor."""
37
-
38
-
39
- class APIResponse(BaseModel):
40
- success: bool
41
- """Represents whether the request was completed successfully."""
42
-
43
- data: Optional[Data] = None
44
-
45
- message: Optional[str] = None
46
- """The accompanying message for the request.
47
-
48
- Includes error details when applicable.
49
- """
@@ -31,8 +31,9 @@ class MonitorSubmitEventParams(TypedDict, total=False):
31
31
  model_input: Required[ModelInput]
32
32
  """A dictionary of inputs sent to the LLM to generate output.
33
33
 
34
- The dictionary must contain at least a `user_prompt` or `system_prompt` field.
35
- For ground_truth_adherence guardrail metric, `ground_truth` should be provided.
34
+ The dictionary must contain at least a `user_prompt` field or a `system_prompt`
35
+ field. For ground_truth_adherence guardrail metric, `ground_truth` should be
36
+ provided.
36
37
  """
37
38
 
38
39
  model_output: Required[str]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: deeprails
3
- Version: 1.8.0
3
+ Version: 1.9.0
4
4
  Summary: The official Python library for the deeprails API
5
5
  Project-URL: Homepage, https://docs.deeprails.com/
6
6
  Project-URL: Repository, https://github.com/deeprails/deeprails-sdk-python
@@ -11,7 +11,7 @@ deeprails/_resource.py,sha256=7RXX5KZr4j0TIE66vnduHp7p9Yf9X0FyDDECuvRHARg,1118
11
11
  deeprails/_response.py,sha256=yj0HJDU91WPpiczwi6CBOLAl_bqf4I_I96vWMAwx6Fg,28806
12
12
  deeprails/_streaming.py,sha256=hCp5bK9dyw2TyrVL69m-6qGC-QtGYwhXmFzITCWPgAs,10112
13
13
  deeprails/_types.py,sha256=XR3mad9NsGqZsjrd1VVJ657-4O4kwyw9Qzg4M3i6Vh0,7239
14
- deeprails/_version.py,sha256=V8Z_1JKT_bgLyhd5iqPYjkEjv9Mii5vfV23cYHHyts8,161
14
+ deeprails/_version.py,sha256=wxi1GAD191IfMIMELfuuMOJr3v9EY7XoLbXOaNNw-dY,161
15
15
  deeprails/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  deeprails/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
17
  deeprails/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
@@ -27,25 +27,25 @@ deeprails/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4
27
27
  deeprails/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
28
28
  deeprails/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
29
  deeprails/resources/__init__.py,sha256=ha0jL9Et8fHzPdkTa7ecihYapOC4I6O-PHf2X9igprE,1491
30
- deeprails/resources/defend.py,sha256=TRuF6F3YEmgGBkJRxf8Mx6JofmZjstUeLTUpHV0S4gQ,28158
31
- deeprails/resources/evaluate.py,sha256=uoElGfpFyH-bO8cbq-2xM2bgfKsQN3P6YF8nmEAPugg,13005
32
- deeprails/resources/monitor.py,sha256=bFCz3t8-wweF76KZoD3n8jHY-xtL8ZA7S-3eI1FiHik,22517
33
- deeprails/types/__init__.py,sha256=tLO-5DMMKt-F4qQYht3F-RFgLbthP-8a36853IhNoGI,1267
34
- deeprails/types/api_response.py,sha256=eHEQeL677tvm1RK0A_S03EAoprQbJzmHspiKrtjKRt4,1232
35
- deeprails/types/defend_create_workflow_params.py,sha256=b2wWr-DtON4XcbPyKD45oO7016F4ji5LoIqyNdM3B5k,2101
36
- deeprails/types/defend_response.py,sha256=sIS9nBgW2a_yBYxVWo33pgy1IKEn-m4AzamOr5Eov5g,1602
37
- deeprails/types/defend_submit_event_params.py,sha256=nbrszvTg_I8WEZJe6hPzP22pCC8Fkp60nmgH3p211uU,1521
30
+ deeprails/resources/defend.py,sha256=e6NzUJziYx__FkGSVNeaqzA8sZU0L5dY5Nob1IPCxc4,28186
31
+ deeprails/resources/evaluate.py,sha256=6SJ3iOH3uYPz3k3MS_G_P75zgSu4bBIurazHQ8byEl0,13025
32
+ deeprails/resources/monitor.py,sha256=bW7HCn8lDpWqaPd11J_tVnGSduWTX3sfXlDYYycvk8k,22524
33
+ deeprails/types/__init__.py,sha256=-Dsqdk7bVrDKj3ryCVbwIfIqSLFfF8pOu3JU7O9-8TA,1254
34
+ deeprails/types/defend_create_workflow_params.py,sha256=AmyoU1z3a0U39pqVtVnFsM86ysK1nYIx15Tolwb4PKA,2102
35
+ deeprails/types/defend_response.py,sha256=VoePIT9RKN795y-3ZvoFmzSTCetqkZZh6iQLYjJEFoY,1603
36
+ deeprails/types/defend_submit_event_params.py,sha256=yL_rLUGKlZjXHGbdi8h9ZItb4sICQ2POO_o0VbUtans,1539
38
37
  deeprails/types/defend_update_workflow_params.py,sha256=QH2k7EDMLub3mW1lPV5SUoKDHW_T2arSo-RGHLterwo,373
39
- deeprails/types/evaluate_create_params.py,sha256=B_WthHkJJzH7vjvKYd_PhJcQTilOhUsMBd6mz5hxGbQ,1987
40
- deeprails/types/evaluation.py,sha256=GAzuZMOD51bCNVLUeROO4Vi26j3DE3kEIRFf9-UfZjQ,3314
38
+ deeprails/types/evaluate_create_params.py,sha256=GGdFXjYjyLD5O1fn4bwDwDKI0EwvciJNF-uYmvCUBwA,2001
39
+ deeprails/types/evaluation.py,sha256=3ajWcd7oYRtYZDOe0fVQHeVRN6-ymjA7F47VduwTfP4,3328
41
40
  deeprails/types/monitor_create_params.py,sha256=kTSj-PhuzpT-HPDTQJemRWfd8w32foUMH9FQZj8symk,384
41
+ deeprails/types/monitor_detail_response.py,sha256=pts1JThENDUQhF0xKsPvOY3C5fUU-z8HW6ZVCKwmq8g,1939
42
+ deeprails/types/monitor_event_response.py,sha256=-cnugHD_3QeeZRMbo6aQBirqSPgKIKpaD2qNkgxCeCA,565
43
+ deeprails/types/monitor_response.py,sha256=LjnJVYniee1hgvZu8RT-9jX4xd0Ob_yvq4NBOxVn59c,950
42
44
  deeprails/types/monitor_retrieve_params.py,sha256=PEsRmbd-81z4pJvhfi4JbrQWNzmeiLkoNsTUoPZ6kFY,352
43
- deeprails/types/monitor_retrieve_response.py,sha256=BZp7-6PFVdqYU5ZDhbr1Eao3kU132zTm9idgoaA65Gg,2245
44
- deeprails/types/monitor_submit_event_params.py,sha256=d2AzwBe-d0tBfvnknfy0fGCrCCd0GC2kJb1AXbje3cg,2152
45
- deeprails/types/monitor_submit_event_response.py,sha256=qlraxIJaclNSR_JOizMPj9gOiz-0x7lIChSX3DmFllM,867
45
+ deeprails/types/monitor_submit_event_params.py,sha256=YetTV8HzmDGNnSYoKZp8tv3u9L6oYn4tnvWOppTRfOQ,2164
46
46
  deeprails/types/monitor_update_params.py,sha256=gJyFFxT_u_iWABknuKnLpPl9r-VPfCcGtOAmh6sPwUw,550
47
47
  deeprails/types/workflow_event_response.py,sha256=mIzOCnYJg4TDSq_tG_0WfA0_Gmc9-0q-befyookfUFM,867
48
- deeprails-1.8.0.dist-info/METADATA,sha256=taDsSz0VVSWTfKlHscWkFvDJPNLZz-ALaMMo9MfLjsc,12080
49
- deeprails-1.8.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
50
- deeprails-1.8.0.dist-info/licenses/LICENSE,sha256=rFTxPcYE516UQLju2SCY1r2pSDDfodL0-ZvxF_fgueg,11339
51
- deeprails-1.8.0.dist-info/RECORD,,
48
+ deeprails-1.9.0.dist-info/METADATA,sha256=XP4pijd9tcmRhIrw4j10axapTSyQ48VzYK_WCqiGkCc,12080
49
+ deeprails-1.9.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
50
+ deeprails-1.9.0.dist-info/licenses/LICENSE,sha256=rFTxPcYE516UQLju2SCY1r2pSDDfodL0-ZvxF_fgueg,11339
51
+ deeprails-1.9.0.dist-info/RECORD,,