deeprails 1.0.0__py3-none-any.whl → 1.2.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.
@@ -9,7 +9,9 @@ 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
11
  from .monitor_retrieve_params import MonitorRetrieveParams as MonitorRetrieveParams
12
+ from .workflow_event_response import WorkflowEventResponse as WorkflowEventResponse
12
13
  from .monitor_retrieve_response import MonitorRetrieveResponse as MonitorRetrieveResponse
14
+ from .defend_submit_event_params import DefendSubmitEventParams as DefendSubmitEventParams
13
15
  from .monitor_submit_event_params import MonitorSubmitEventParams as MonitorSubmitEventParams
14
16
  from .defend_create_workflow_params import DefendCreateWorkflowParams as DefendCreateWorkflowParams
15
17
  from .defend_update_workflow_params import DefendUpdateWorkflowParams as DefendUpdateWorkflowParams
@@ -5,10 +5,10 @@ from __future__ import annotations
5
5
  from typing import Dict, Union
6
6
  from typing_extensions import Literal, Required, TypeAlias, TypedDict
7
7
 
8
- __all__ = ["EventSubmitEventParams", "ModelInput"]
8
+ __all__ = ["DefendSubmitEventParams", "ModelInput"]
9
9
 
10
10
 
11
- class EventSubmitEventParams(TypedDict, total=False):
11
+ class DefendSubmitEventParams(TypedDict, total=False):
12
12
  model_input: Required[ModelInput]
13
13
  """A dictionary of inputs sent to the LLM to generate output.
14
14
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  from typing import Optional
4
4
 
5
- from ..._models import BaseModel
5
+ from .._models import BaseModel
6
6
 
7
7
  __all__ = ["WorkflowEventResponse"]
8
8
 
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: deeprails
3
- Version: 1.0.0
3
+ Version: 1.2.0
4
4
  Summary: The official Python library for the deeprails API
5
- Project-URL: Homepage, https://github.com/deeprails/deeprails-python-sdk
6
- Project-URL: Repository, https://github.com/deeprails/deeprails-python-sdk
7
- Author-email: Deeprails <support@deeprails.ai>
5
+ Project-URL: Homepage, https://docs.deeprails.com/
6
+ Project-URL: Repository, https://github.com/deeprails/deeprails-sdk-python
7
+ Author-email: DeepRails <support@deeprails.ai>
8
8
  License: Apache-2.0
9
9
  Classifier: Intended Audience :: Developers
10
10
  Classifier: License :: OSI Approved :: Apache Software License
@@ -42,11 +42,9 @@ The Deeprails Python library provides convenient access to the Deeprails REST AP
42
42
  application. The library includes type definitions for all request params and response fields,
43
43
  and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
44
 
45
- It is generated with [Stainless](https://www.stainless.com/).
46
-
47
45
  ## Documentation
48
46
 
49
- The full API of this library can be found in [api.md](https://github.com/deeprails/deeprails-python-sdk/tree/main/api.md).
47
+ The full API of this library can be found in [api.md](https://github.com/deeprails/deeprails-sdk-python/tree/main/api.md).
50
48
 
51
49
  ## Installation
52
50
 
@@ -57,7 +55,7 @@ pip install deeprails
57
55
 
58
56
  ## Usage
59
57
 
60
- The full API of this library can be found in [api.md](https://github.com/deeprails/deeprails-python-sdk/tree/main/api.md).
58
+ The full API of this library can be found in [api.md](https://github.com/deeprails/deeprails-sdk-python/tree/main/api.md).
61
59
 
62
60
  ```python
63
61
  import os
@@ -65,26 +63,16 @@ from deeprails import Deeprails
65
63
 
66
64
  client = Deeprails(
67
65
  api_key=os.environ.get("DEEPRAILS_API_KEY"), # This is the default and can be omitted
68
- # defaults to "production".
69
- environment="environment_1",
70
66
  )
71
67
 
72
68
  defend_response = client.defend.create_workflow(
73
- improvement_action="regenerate",
69
+ improvement_action="fixit",
74
70
  metrics={
75
- "0": 0,
76
- "1": 0,
77
- "2": 0,
78
- "3": 0,
79
- "4": 0,
80
- "5": 0,
81
- "6": 0,
82
- "7": 0,
83
- "8": 0,
84
- "9": 0,
71
+ "completeness": 0.85,
72
+ "instruction_adherence": 0.75,
85
73
  },
86
- name="REPLACE_ME",
87
- type="automatic",
74
+ name="Push Alert Workflow",
75
+ type="custom",
88
76
  )
89
77
  print(defend_response.workflow_id)
90
78
  ```
@@ -105,28 +93,18 @@ from deeprails import AsyncDeeprails
105
93
 
106
94
  client = AsyncDeeprails(
107
95
  api_key=os.environ.get("DEEPRAILS_API_KEY"), # This is the default and can be omitted
108
- # defaults to "production".
109
- environment="environment_1",
110
96
  )
111
97
 
112
98
 
113
99
  async def main() -> None:
114
100
  defend_response = await client.defend.create_workflow(
115
- improvement_action="regenerate",
101
+ improvement_action="fixit",
116
102
  metrics={
117
- "0": 0,
118
- "1": 0,
119
- "2": 0,
120
- "3": 0,
121
- "4": 0,
122
- "5": 0,
123
- "6": 0,
124
- "7": 0,
125
- "8": 0,
126
- "9": 0,
103
+ "completeness": 0.85,
104
+ "instruction_adherence": 0.75,
127
105
  },
128
- name="REPLACE_ME",
129
- type="automatic",
106
+ name="Push Alert Workflow",
107
+ type="custom",
130
108
  )
131
109
  print(defend_response.workflow_id)
132
110
 
@@ -161,21 +139,13 @@ async def main() -> None:
161
139
  http_client=DefaultAioHttpClient(),
162
140
  ) as client:
163
141
  defend_response = await client.defend.create_workflow(
164
- improvement_action="regenerate",
142
+ improvement_action="fixit",
165
143
  metrics={
166
- "0": 0,
167
- "1": 0,
168
- "2": 0,
169
- "3": 0,
170
- "4": 0,
171
- "5": 0,
172
- "6": 0,
173
- "7": 0,
174
- "8": 0,
175
- "9": 0,
144
+ "completeness": 0.85,
145
+ "instruction_adherence": 0.75,
176
146
  },
177
- name="REPLACE_ME",
178
- type="automatic",
147
+ name="Push Alert Workflow",
148
+ type="custom",
179
149
  )
180
150
  print(defend_response.workflow_id)
181
151
 
@@ -201,7 +171,7 @@ from deeprails import Deeprails
201
171
 
202
172
  client = Deeprails()
203
173
 
204
- workflow_event_response = client.defend.events.submit_event(
174
+ workflow_event_response = client.defend.submit_event(
205
175
  workflow_id="workflow_id",
206
176
  model_input={"user_prompt": "user_prompt"},
207
177
  model_output="model_output",
@@ -229,21 +199,13 @@ client = Deeprails()
229
199
 
230
200
  try:
231
201
  client.defend.create_workflow(
232
- improvement_action="regenerate",
202
+ improvement_action="fixit",
233
203
  metrics={
234
- "0": 0,
235
- "1": 0,
236
- "2": 0,
237
- "3": 0,
238
- "4": 0,
239
- "5": 0,
240
- "6": 0,
241
- "7": 0,
242
- "8": 0,
243
- "9": 0,
204
+ "completeness": 0.85,
205
+ "instruction_adherence": 0.75,
244
206
  },
245
- name="REPLACE_ME",
246
- type="automatic",
207
+ name="Push Alert Workflow",
208
+ type="custom",
247
209
  )
248
210
  except deeprails.APIConnectionError as e:
249
211
  print("The server could not be reached")
@@ -288,21 +250,13 @@ client = Deeprails(
288
250
 
289
251
  # Or, configure per-request:
290
252
  client.with_options(max_retries=5).defend.create_workflow(
291
- improvement_action="regenerate",
253
+ improvement_action="fixit",
292
254
  metrics={
293
- "0": 0,
294
- "1": 0,
295
- "2": 0,
296
- "3": 0,
297
- "4": 0,
298
- "5": 0,
299
- "6": 0,
300
- "7": 0,
301
- "8": 0,
302
- "9": 0,
255
+ "completeness": 0.85,
256
+ "instruction_adherence": 0.75,
303
257
  },
304
- name="REPLACE_ME",
305
- type="automatic",
258
+ name="Push Alert Workflow",
259
+ type="custom",
306
260
  )
307
261
  ```
308
262
 
@@ -327,27 +281,19 @@ client = Deeprails(
327
281
 
328
282
  # Override per-request:
329
283
  client.with_options(timeout=5.0).defend.create_workflow(
330
- improvement_action="regenerate",
284
+ improvement_action="fixit",
331
285
  metrics={
332
- "0": 0,
333
- "1": 0,
334
- "2": 0,
335
- "3": 0,
336
- "4": 0,
337
- "5": 0,
338
- "6": 0,
339
- "7": 0,
340
- "8": 0,
341
- "9": 0,
286
+ "completeness": 0.85,
287
+ "instruction_adherence": 0.75,
342
288
  },
343
- name="REPLACE_ME",
344
- type="automatic",
289
+ name="Push Alert Workflow",
290
+ type="custom",
345
291
  )
346
292
  ```
347
293
 
348
294
  On timeout, an `APITimeoutError` is thrown.
349
295
 
350
- Note that requests that time out are [retried twice by default](https://github.com/deeprails/deeprails-python-sdk/tree/main/#retries).
296
+ Note that requests that time out are [retried twice by default](https://github.com/deeprails/deeprails-sdk-python/tree/main/#retries).
351
297
 
352
298
  ## Advanced
353
299
 
@@ -384,21 +330,13 @@ from deeprails import Deeprails
384
330
 
385
331
  client = Deeprails()
386
332
  response = client.defend.with_raw_response.create_workflow(
387
- improvement_action="regenerate",
333
+ improvement_action="fixit",
388
334
  metrics={
389
- "0": 0,
390
- "1": 0,
391
- "2": 0,
392
- "3": 0,
393
- "4": 0,
394
- "5": 0,
395
- "6": 0,
396
- "7": 0,
397
- "8": 0,
398
- "9": 0,
335
+ "completeness": 0.85,
336
+ "instruction_adherence": 0.75,
399
337
  },
400
- name="REPLACE_ME",
401
- type="automatic",
338
+ name="Push Alert Workflow",
339
+ type="custom",
402
340
  )
403
341
  print(response.headers.get('X-My-Header'))
404
342
 
@@ -406,9 +344,9 @@ defend = response.parse() # get the object that `defend.create_workflow()` woul
406
344
  print(defend.workflow_id)
407
345
  ```
408
346
 
409
- These methods return an [`APIResponse`](https://github.com/deeprails/deeprails-python-sdk/tree/main/src/deeprails/_response.py) object.
347
+ These methods return an [`APIResponse`](https://github.com/deeprails/deeprails-sdk-python/tree/main/src/deeprails/_response.py) object.
410
348
 
411
- The async client returns an [`AsyncAPIResponse`](https://github.com/deeprails/deeprails-python-sdk/tree/main/src/deeprails/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
349
+ The async client returns an [`AsyncAPIResponse`](https://github.com/deeprails/deeprails-sdk-python/tree/main/src/deeprails/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
412
350
 
413
351
  #### `.with_streaming_response`
414
352
 
@@ -418,21 +356,13 @@ To stream the response body, use `.with_streaming_response` instead, which requi
418
356
 
419
357
  ```python
420
358
  with client.defend.with_streaming_response.create_workflow(
421
- improvement_action="regenerate",
359
+ improvement_action="fixit",
422
360
  metrics={
423
- "0": 0,
424
- "1": 0,
425
- "2": 0,
426
- "3": 0,
427
- "4": 0,
428
- "5": 0,
429
- "6": 0,
430
- "7": 0,
431
- "8": 0,
432
- "9": 0,
361
+ "completeness": 0.85,
362
+ "instruction_adherence": 0.75,
433
363
  },
434
- name="REPLACE_ME",
435
- type="automatic",
364
+ name="Push Alert Workflow",
365
+ type="custom",
436
366
  ) as response:
437
367
  print(response.headers.get("X-My-Header"))
438
368
 
@@ -442,109 +372,6 @@ with client.defend.with_streaming_response.create_workflow(
442
372
 
443
373
  The context manager is required so that the response will reliably be closed.
444
374
 
445
- ### Making custom/undocumented requests
446
-
447
- This library is typed for convenient access to the documented API.
448
-
449
- If you need to access undocumented endpoints, params, or response properties, the library can still be used.
450
-
451
- #### Undocumented endpoints
452
-
453
- To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
454
- http verbs. Options on the client will be respected (such as retries) when making this request.
455
-
456
- ```py
457
- import httpx
458
-
459
- response = client.post(
460
- "/foo",
461
- cast_to=httpx.Response,
462
- body={"my_param": True},
463
- )
464
-
465
- print(response.headers.get("x-foo"))
466
- ```
467
-
468
- #### Undocumented request params
469
-
470
- If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request
471
- options.
472
-
473
- #### Undocumented response properties
474
-
475
- To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You
476
- can also get all the extra fields on the Pydantic model as a dict with
477
- [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra).
478
-
479
- ### Configuring the HTTP client
480
-
481
- You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
482
-
483
- - Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
484
- - Custom [transports](https://www.python-httpx.org/advanced/transports/)
485
- - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
486
-
487
- ```python
488
- import httpx
489
- from deeprails import Deeprails, DefaultHttpxClient
490
-
491
- client = Deeprails(
492
- # Or use the `DEEPRAILS_BASE_URL` env var
493
- base_url="http://my.test.server.example.com:8083",
494
- http_client=DefaultHttpxClient(
495
- proxy="http://my.test.proxy.example.com",
496
- transport=httpx.HTTPTransport(local_address="0.0.0.0"),
497
- ),
498
- )
499
- ```
500
-
501
- You can also customize the client on a per-request basis by using `with_options()`:
502
-
503
- ```python
504
- client.with_options(http_client=DefaultHttpxClient(...))
505
- ```
506
-
507
- ### Managing HTTP resources
508
-
509
- By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
510
-
511
- ```py
512
- from deeprails import Deeprails
513
-
514
- with Deeprails() as client:
515
- # make requests here
516
- ...
517
-
518
- # HTTP client is now closed
519
- ```
520
-
521
- ## Versioning
522
-
523
- This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
524
-
525
- 1. Changes that only affect static types, without breaking runtime behavior.
526
- 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
527
- 3. Changes that we do not expect to impact the vast majority of users in practice.
528
-
529
- We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
530
-
531
- We are keen for your feedback; please open an [issue](https://www.github.com/deeprails/deeprails-python-sdk/issues) with questions, bugs, or suggestions.
532
-
533
- ### Determining the installed version
534
-
535
- If you've upgraded to the latest version but aren't seeing any new features you were expecting then your python environment is likely still using an older version.
536
-
537
- You can determine the version that is being used at runtime with:
538
-
539
- ```py
540
- import deeprails
541
- print(deeprails.__version__)
542
- ```
543
-
544
375
  ## Requirements
545
376
 
546
377
  Python 3.8 or higher.
547
-
548
- ## Contributing
549
-
550
- See [the contributing documentation](https://github.com/deeprails/deeprails-python-sdk/tree/main/./CONTRIBUTING.md).
@@ -1,6 +1,6 @@
1
- deeprails/__init__.py,sha256=qUPCW7un-Ok2Oa83Ws4nVqesPGKzfxfvo-9a65gcZjQ,2730
1
+ deeprails/__init__.py,sha256=Rz38DnPkRJzvTJjgsLPjYyEId-pJndorgdE4Yhcq0J4,2692
2
2
  deeprails/_base_client.py,sha256=3bTH_cn_59gEjfZdcRS6g6Er4ZobAgTCRsnQmD_viNQ,67050
3
- deeprails/_client.py,sha256=mwIV1XuIHJ6ePXTepKlPes0lkUAdOUAJssKMC9L8HB0,18948
3
+ deeprails/_client.py,sha256=oinOakaCufsSKAjWC2JOwT4bCeEmRB-xQCT9FNAG1rM,16125
4
4
  deeprails/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
5
  deeprails/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  deeprails/_exceptions.py,sha256=N99bKrZNjDzgEDrvdw99WO-zpuPeZySaUUKNLEUz8mU,3226
@@ -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=neVPZ-Kd_qcIvzJ8StueL8i5WCzNVWHnmB7H4v66GNk,161
14
+ deeprails/_version.py,sha256=ycCjEYhPunIKim4afldP-ef4yOvdCWtPOs4FpSmFHy4,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,15 +27,14 @@ 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/evaluate.py,sha256=tuxg9PpsOQ9zsiJZR9hfAQ32sbz1H8zoAqA8W1EWHHc,12867
31
- deeprails/resources/monitor.py,sha256=6dpazeUQWQG83lkSzmuMkmTRqP3-ZznWjVYkapQKjfA,22191
32
- deeprails/resources/defend/__init__.py,sha256=H4Ul53d3jnaIzI-dlBxFvzBihGNbKjemN_g0Z4_dAzg,1002
33
- deeprails/resources/defend/defend.py,sha256=e8AcBB0axbi0XhOluqpTzxUKNBBA6gxIMigBON52bb4,19379
34
- deeprails/resources/defend/events.py,sha256=vAYZWO4n7CFGRamgvjWEF52br3xBvNex6NsTXZ-WOY8,12382
35
- deeprails/types/__init__.py,sha256=UtGXu_uhJYIkD7Jw_4-ohoDx_jv9gi49glkhLPLssqA,1092
30
+ deeprails/resources/defend.py,sha256=ehqqzx7XjNNSxbggdbZ-VQsYmRQb5Qc6_zTznKvi4zs,27704
31
+ deeprails/resources/evaluate.py,sha256=6GklcmsdDegocTbyVw25Y0i3Op6E-rbz_ikIcZnhXNY,12867
32
+ deeprails/resources/monitor.py,sha256=2RW0eXSs48T1zjyIg6SD6poIgUq6Ndzktcc7JQz9sWg,22191
33
+ deeprails/types/__init__.py,sha256=tLO-5DMMKt-F4qQYht3F-RFgLbthP-8a36853IhNoGI,1267
36
34
  deeprails/types/api_response.py,sha256=jIiEJsQQdRgw-HkwRiHYYe1YI6DtPlgeCxNTY9kgqT8,1295
37
35
  deeprails/types/defend_create_workflow_params.py,sha256=_N1cKVmNjRIlo9UkbkaJtamfDDHR-G5gQ2KkyAjIAJk,2077
38
36
  deeprails/types/defend_response.py,sha256=GjoxHYJ4kq4BR-F1T3KYez8rcnNZFa0xkrsCQ_owlj0,1618
37
+ deeprails/types/defend_submit_event_params.py,sha256=51Z7rviuE-wvU4otESmB6mIkZyRD5VGLARpMV6m4ITI,1386
39
38
  deeprails/types/defend_update_workflow_params.py,sha256=XSwPZd8QmHGQeYitO5rXzZ0U_pkR_w6tIYVr_vZnc1Y,510
40
39
  deeprails/types/evaluate_create_params.py,sha256=8P3jDuSgGRfGSdgq50Zq9J709ZltRZw29hI8R3MoS84,1828
41
40
  deeprails/types/evaluation.py,sha256=cLFQtazZyAEOVGkGqQ_VUmCFE8WMS2pBzUPLQ9MioOA,3787
@@ -45,10 +44,8 @@ deeprails/types/monitor_retrieve_response.py,sha256=OFCgBIoZ-nopKBuVz78ogubk73qJ
45
44
  deeprails/types/monitor_submit_event_params.py,sha256=q8Mq24McRr1WdXQ8L1YunKqLBb9-u91J2MLmhUCdaIw,1991
46
45
  deeprails/types/monitor_submit_event_response.py,sha256=LYWEZ24b0AHCImUjK6kXRJmq0kukpigtVTXoAzeHbdc,924
47
46
  deeprails/types/monitor_update_params.py,sha256=gJyFFxT_u_iWABknuKnLpPl9r-VPfCcGtOAmh6sPwUw,550
48
- deeprails/types/defend/__init__.py,sha256=8TYxNEYSBHG6Mg5jMH5i4xGTSn4lDW_3-AoaH9KnioE,295
49
- deeprails/types/defend/event_submit_event_params.py,sha256=Sr101zDG65PSlq3irOy-X0VsU1HndNXBkdoQVDi3IEs,1384
50
- deeprails/types/defend/workflow_event_response.py,sha256=RFGga3WUTq4CAMueu_pSd-QRVtTOLdwSMX0n3zwHJSQ,868
51
- deeprails-1.0.0.dist-info/METADATA,sha256=a8Ws8lpN6C6-ot2sedmj17Y0bbg-n9oz4ngEN-SfYlI,16605
52
- deeprails-1.0.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
53
- deeprails-1.0.0.dist-info/licenses/LICENSE,sha256=rFTxPcYE516UQLju2SCY1r2pSDDfodL0-ZvxF_fgueg,11339
54
- deeprails-1.0.0.dist-info/RECORD,,
47
+ deeprails/types/workflow_event_response.py,sha256=mIzOCnYJg4TDSq_tG_0WfA0_Gmc9-0q-befyookfUFM,867
48
+ deeprails-1.2.0.dist-info/METADATA,sha256=_JnZNFI7JgNQ00Y5Boi8qgtdfElyBNUvdUDSQzrZVTI,11778
49
+ deeprails-1.2.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
50
+ deeprails-1.2.0.dist-info/licenses/LICENSE,sha256=rFTxPcYE516UQLju2SCY1r2pSDDfodL0-ZvxF_fgueg,11339
51
+ deeprails-1.2.0.dist-info/RECORD,,
@@ -1,33 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from .defend import (
4
- DefendResource,
5
- AsyncDefendResource,
6
- DefendResourceWithRawResponse,
7
- AsyncDefendResourceWithRawResponse,
8
- DefendResourceWithStreamingResponse,
9
- AsyncDefendResourceWithStreamingResponse,
10
- )
11
- from .events import (
12
- EventsResource,
13
- AsyncEventsResource,
14
- EventsResourceWithRawResponse,
15
- AsyncEventsResourceWithRawResponse,
16
- EventsResourceWithStreamingResponse,
17
- AsyncEventsResourceWithStreamingResponse,
18
- )
19
-
20
- __all__ = [
21
- "EventsResource",
22
- "AsyncEventsResource",
23
- "EventsResourceWithRawResponse",
24
- "AsyncEventsResourceWithRawResponse",
25
- "EventsResourceWithStreamingResponse",
26
- "AsyncEventsResourceWithStreamingResponse",
27
- "DefendResource",
28
- "AsyncDefendResource",
29
- "DefendResourceWithRawResponse",
30
- "AsyncDefendResourceWithRawResponse",
31
- "DefendResourceWithStreamingResponse",
32
- "AsyncDefendResourceWithStreamingResponse",
33
- ]