deeprails 1.5.0__py3-none-any.whl → 1.6.1__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.
- deeprails/_version.py +1 -1
- {deeprails-1.5.0.dist-info → deeprails-1.6.1.dist-info}/METADATA +10 -10
- {deeprails-1.5.0.dist-info → deeprails-1.6.1.dist-info}/RECORD +5 -5
- {deeprails-1.5.0.dist-info → deeprails-1.6.1.dist-info}/WHEEL +0 -0
- {deeprails-1.5.0.dist-info → deeprails-1.6.1.dist-info}/licenses/LICENSE +0 -0
deeprails/_version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: deeprails
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.1
|
|
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
|
|
@@ -30,7 +30,7 @@ Requires-Dist: sniffio
|
|
|
30
30
|
Requires-Dist: typing-extensions<5,>=4.10
|
|
31
31
|
Provides-Extra: aiohttp
|
|
32
32
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
33
|
-
Requires-Dist: httpx-aiohttp>=0.1.
|
|
33
|
+
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
|
|
36
36
|
# Deeprails Python API library
|
|
@@ -68,7 +68,7 @@ client = Deeprails(
|
|
|
68
68
|
defend_response = client.defend.create_workflow(
|
|
69
69
|
improvement_action="fixit",
|
|
70
70
|
metrics={
|
|
71
|
-
"completeness": 0.
|
|
71
|
+
"completeness": 0.7,
|
|
72
72
|
"instruction_adherence": 0.75,
|
|
73
73
|
},
|
|
74
74
|
name="Push Alert Workflow",
|
|
@@ -100,7 +100,7 @@ async def main() -> None:
|
|
|
100
100
|
defend_response = await client.defend.create_workflow(
|
|
101
101
|
improvement_action="fixit",
|
|
102
102
|
metrics={
|
|
103
|
-
"completeness": 0.
|
|
103
|
+
"completeness": 0.7,
|
|
104
104
|
"instruction_adherence": 0.75,
|
|
105
105
|
},
|
|
106
106
|
name="Push Alert Workflow",
|
|
@@ -141,7 +141,7 @@ async def main() -> None:
|
|
|
141
141
|
defend_response = await client.defend.create_workflow(
|
|
142
142
|
improvement_action="fixit",
|
|
143
143
|
metrics={
|
|
144
|
-
"completeness": 0.
|
|
144
|
+
"completeness": 0.7,
|
|
145
145
|
"instruction_adherence": 0.75,
|
|
146
146
|
},
|
|
147
147
|
name="Push Alert Workflow",
|
|
@@ -200,7 +200,7 @@ try:
|
|
|
200
200
|
client.defend.create_workflow(
|
|
201
201
|
improvement_action="fixit",
|
|
202
202
|
metrics={
|
|
203
|
-
"completeness": 0.
|
|
203
|
+
"completeness": 0.7,
|
|
204
204
|
"instruction_adherence": 0.75,
|
|
205
205
|
},
|
|
206
206
|
name="Push Alert Workflow",
|
|
@@ -251,7 +251,7 @@ client = Deeprails(
|
|
|
251
251
|
client.with_options(max_retries=5).defend.create_workflow(
|
|
252
252
|
improvement_action="fixit",
|
|
253
253
|
metrics={
|
|
254
|
-
"completeness": 0.
|
|
254
|
+
"completeness": 0.7,
|
|
255
255
|
"instruction_adherence": 0.75,
|
|
256
256
|
},
|
|
257
257
|
name="Push Alert Workflow",
|
|
@@ -282,7 +282,7 @@ client = Deeprails(
|
|
|
282
282
|
client.with_options(timeout=5.0).defend.create_workflow(
|
|
283
283
|
improvement_action="fixit",
|
|
284
284
|
metrics={
|
|
285
|
-
"completeness": 0.
|
|
285
|
+
"completeness": 0.7,
|
|
286
286
|
"instruction_adherence": 0.75,
|
|
287
287
|
},
|
|
288
288
|
name="Push Alert Workflow",
|
|
@@ -331,7 +331,7 @@ client = Deeprails()
|
|
|
331
331
|
response = client.defend.with_raw_response.create_workflow(
|
|
332
332
|
improvement_action="fixit",
|
|
333
333
|
metrics={
|
|
334
|
-
"completeness": 0.
|
|
334
|
+
"completeness": 0.7,
|
|
335
335
|
"instruction_adherence": 0.75,
|
|
336
336
|
},
|
|
337
337
|
name="Push Alert Workflow",
|
|
@@ -357,7 +357,7 @@ To stream the response body, use `.with_streaming_response` instead, which requi
|
|
|
357
357
|
with client.defend.with_streaming_response.create_workflow(
|
|
358
358
|
improvement_action="fixit",
|
|
359
359
|
metrics={
|
|
360
|
-
"completeness": 0.
|
|
360
|
+
"completeness": 0.7,
|
|
361
361
|
"instruction_adherence": 0.75,
|
|
362
362
|
},
|
|
363
363
|
name="Push Alert Workflow",
|
|
@@ -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=
|
|
14
|
+
deeprails/_version.py,sha256=E5_rjyQysIZv4CRgA4wWlWsQprgLpZyGiQL70Aej8aI,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
|
|
@@ -45,7 +45,7 @@ deeprails/types/monitor_submit_event_params.py,sha256=PQwn2wH8F0uMmVGg7KyMIBbbEx
|
|
|
45
45
|
deeprails/types/monitor_submit_event_response.py,sha256=qlraxIJaclNSR_JOizMPj9gOiz-0x7lIChSX3DmFllM,867
|
|
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.
|
|
49
|
-
deeprails-1.
|
|
50
|
-
deeprails-1.
|
|
51
|
-
deeprails-1.
|
|
48
|
+
deeprails-1.6.1.dist-info/METADATA,sha256=PC0XZuyLbN6n1htX0iopVime0PNWc8XrlMzlRdx6WRs,11840
|
|
49
|
+
deeprails-1.6.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
50
|
+
deeprails-1.6.1.dist-info/licenses/LICENSE,sha256=rFTxPcYE516UQLju2SCY1r2pSDDfodL0-ZvxF_fgueg,11339
|
|
51
|
+
deeprails-1.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|