agentex-sdk 0.7.0__py3-none-any.whl → 0.7.2__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.
- agentex/_version.py +1 -1
- agentex/lib/adk/providers/_modules/sync_provider.py +116 -15
- agentex/lib/cli/commands/init.py +16 -1
- agentex/lib/cli/templates/temporal-openai-agents/.dockerignore.j2 +43 -0
- agentex/lib/cli/templates/temporal-openai-agents/Dockerfile-uv.j2 +48 -0
- agentex/lib/cli/templates/temporal-openai-agents/Dockerfile.j2 +48 -0
- agentex/lib/cli/templates/temporal-openai-agents/README.md.j2 +224 -0
- agentex/lib/cli/templates/temporal-openai-agents/dev.ipynb.j2 +126 -0
- agentex/lib/cli/templates/temporal-openai-agents/environments.yaml.j2 +64 -0
- agentex/lib/cli/templates/temporal-openai-agents/manifest.yaml.j2 +140 -0
- agentex/lib/cli/templates/temporal-openai-agents/project/acp.py.j2 +80 -0
- agentex/lib/cli/templates/temporal-openai-agents/project/activities.py.j2 +116 -0
- agentex/lib/cli/templates/temporal-openai-agents/project/run_worker.py.j2 +56 -0
- agentex/lib/cli/templates/temporal-openai-agents/project/workflow.py.j2 +169 -0
- agentex/lib/cli/templates/temporal-openai-agents/pyproject.toml.j2 +35 -0
- agentex/lib/cli/templates/temporal-openai-agents/requirements.txt.j2 +4 -0
- agentex/lib/cli/templates/temporal-openai-agents/test_agent.py.j2 +147 -0
- agentex/resources/messages/messages.py +155 -3
- agentex/types/__init__.py +2 -0
- agentex/types/message_list_paginated_params.py +19 -0
- agentex/types/message_list_paginated_response.py +21 -0
- {agentex_sdk-0.7.0.dist-info → agentex_sdk-0.7.2.dist-info}/METADATA +1 -1
- {agentex_sdk-0.7.0.dist-info → agentex_sdk-0.7.2.dist-info}/RECORD +26 -10
- {agentex_sdk-0.7.0.dist-info → agentex_sdk-0.7.2.dist-info}/WHEEL +0 -0
- {agentex_sdk-0.7.0.dist-info → agentex_sdk-0.7.2.dist-info}/entry_points.txt +0 -0
- {agentex_sdk-0.7.0.dist-info → agentex_sdk-0.7.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -11,7 +11,7 @@ agentex/_resource.py,sha256=S1t7wmR5WUvoDIhZjo_x-E7uoTJBynJ3d8tPJMQYdjw,1106
|
|
|
11
11
|
agentex/_response.py,sha256=Tb9zazsnemO2rTxWtBjAD5WBqlhli5ZaXGbiKgdu5DE,28794
|
|
12
12
|
agentex/_streaming.py,sha256=aOvLOte7kaclPGm-D0iNdM3uRcWrZ-T2B8t9BDNmpuA,10225
|
|
13
13
|
agentex/_types.py,sha256=00q2kgDxUPJC16dU-YIUeOFsN5MzNW0zjzVXMlBYGV0,7296
|
|
14
|
-
agentex/_version.py,sha256=
|
|
14
|
+
agentex/_version.py,sha256=caLG6X6CsK6bHcI3GUgqs0h-eWS5M0XKW84P5cZtYPY,159
|
|
15
15
|
agentex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
agentex/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
agentex/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -45,7 +45,7 @@ agentex/lib/adk/providers/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
45
45
|
agentex/lib/adk/providers/_modules/litellm.py,sha256=6eOdEpd1g9ZljQHXtIokjGymlFpnaw2g8ow11hldovo,9470
|
|
46
46
|
agentex/lib/adk/providers/_modules/openai.py,sha256=rguTE4uGLodqr8zx5GRRtSkcWC9llNA1kUFKF0yhdK0,23679
|
|
47
47
|
agentex/lib/adk/providers/_modules/sgp.py,sha256=x64axb0oVmVh5W8hwpnMMPqxad2HySf2DYHPxRNwjck,3208
|
|
48
|
-
agentex/lib/adk/providers/_modules/sync_provider.py,sha256=
|
|
48
|
+
agentex/lib/adk/providers/_modules/sync_provider.py,sha256=Tekg78AUa27FTp2Yy9b0H0OIWswPYTz9dr35W8ATtvw,31384
|
|
49
49
|
agentex/lib/adk/utils/__init__.py,sha256=7f6ayV0_fqyw5cwzVANNcZWGJZ-vrrYtZ0qi7KKBRFs,130
|
|
50
50
|
agentex/lib/adk/utils/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
51
|
agentex/lib/adk/utils/_modules/client.py,sha256=UYSTThuZoX3nqF8iuRmRI8uPO00NrYgC_6BGX6HA7Js,1017
|
|
@@ -53,7 +53,7 @@ agentex/lib/adk/utils/_modules/templating.py,sha256=tSiJGoDrF-XkMEi4MB_wVH6nyKyh
|
|
|
53
53
|
agentex/lib/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
54
|
agentex/lib/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
agentex/lib/cli/commands/agents.py,sha256=E6O7p3B3P4yX-oYWRtzfbEyI5Pws-yzFi-htYJ7B_kY,14079
|
|
56
|
-
agentex/lib/cli/commands/init.py,sha256=
|
|
56
|
+
agentex/lib/cli/commands/init.py,sha256=CrKksw5l1w9hXSdDN6wPNgQlyE1k_kqHlA6QrOenqHM,15537
|
|
57
57
|
agentex/lib/cli/commands/main.py,sha256=QWychw-Xq3nQ00BMypgOEF4w1WauNrgQ06PDardNP_8,1042
|
|
58
58
|
agentex/lib/cli/commands/secrets.py,sha256=t4zvoyjOHmw-8qp6nsxdZCvqy43QXOl0MWXA3ooBO6Q,5640
|
|
59
59
|
agentex/lib/cli/commands/tasks.py,sha256=fvZJjYI8Dh-6nbTVpRa2-VdF6A8D4w3Dmd4tMslSTPI,3741
|
|
@@ -103,6 +103,20 @@ agentex/lib/cli/templates/temporal/project/acp.py.j2,sha256=483kq_sfBP2bPvcciGVd
|
|
|
103
103
|
agentex/lib/cli/templates/temporal/project/activities.py.j2,sha256=kRDCMs5YYY24K88WuoPBzSdLQdLILVlAbud0G5ULJvU,2304
|
|
104
104
|
agentex/lib/cli/templates/temporal/project/run_worker.py.j2,sha256=_JeknhHcE77GwVdJAWRTdgREJQXGTVOI2HDfh4QNZSw,1065
|
|
105
105
|
agentex/lib/cli/templates/temporal/project/workflow.py.j2,sha256=VPnHnzr09i5y68vCOIJ8wTrc8KVHoDp5WooQew0GiWg,3210
|
|
106
|
+
agentex/lib/cli/templates/temporal-openai-agents/.dockerignore.j2,sha256=hweGFxw5eDZYsb5EnRHpv27o9M1HF2PEWOxqsfBBcAE,320
|
|
107
|
+
agentex/lib/cli/templates/temporal-openai-agents/Dockerfile-uv.j2,sha256=g8zECsR9_byvlc8bPdbY4Lw97w9nlWb8edx5FPiJav0,1426
|
|
108
|
+
agentex/lib/cli/templates/temporal-openai-agents/Dockerfile.j2,sha256=N1Z73jb8pnxsjP9zbs-tSyNHO6usVzyOdtWorbR5gVY,1434
|
|
109
|
+
agentex/lib/cli/templates/temporal-openai-agents/README.md.j2,sha256=J2oohSuHeCNcaaAYhpjzxlYtYMOTxo0ywoL0_hZW7y4,5535
|
|
110
|
+
agentex/lib/cli/templates/temporal-openai-agents/dev.ipynb.j2,sha256=wWOZJuccKtrtN5-f44Ma8puQUNf-Q6geTPzI-QlioOA,3393
|
|
111
|
+
agentex/lib/cli/templates/temporal-openai-agents/environments.yaml.j2,sha256=zu7-nGRt_LF3qmWFxR_izTUOYQXuDZeypEVa03kVW10,2096
|
|
112
|
+
agentex/lib/cli/templates/temporal-openai-agents/manifest.yaml.j2,sha256=k1TVT6QmE25KEXyNxx7m58vCowsFq74naiRgKrbwaho,4604
|
|
113
|
+
agentex/lib/cli/templates/temporal-openai-agents/pyproject.toml.j2,sha256=FZXOaobtHdE_LOHUaM8utQ6G4yJhzhVRJq9aR-3iHIQ,576
|
|
114
|
+
agentex/lib/cli/templates/temporal-openai-agents/requirements.txt.j2,sha256=n6pteP39OzOALDokqOL7GanAPdzrD0hXuvOlNAOgZEU,53
|
|
115
|
+
agentex/lib/cli/templates/temporal-openai-agents/test_agent.py.j2,sha256=PAlGQC5p3CRQxZsa0QVb0EIHWanFKBOd4Xb5TNuVjzs,5186
|
|
116
|
+
agentex/lib/cli/templates/temporal-openai-agents/project/acp.py.j2,sha256=daC-xb9GpGi-LluxN0-FyVkexI_6qzkrwwHNeLVQbwE,3179
|
|
117
|
+
agentex/lib/cli/templates/temporal-openai-agents/project/activities.py.j2,sha256=fxdoocYW9Y98x8MWItcrRdtylMXhyE6-EYkNO4WkFu4,3325
|
|
118
|
+
agentex/lib/cli/templates/temporal-openai-agents/project/run_worker.py.j2,sha256=q7LyaVQM7lXmF-thA5DpTf8P6Jh7IQerx8DEgA_KmVY,2057
|
|
119
|
+
agentex/lib/cli/templates/temporal-openai-agents/project/workflow.py.j2,sha256=hOoxXyDLdSPZSCU_FYyMkLtJcmz7qHsFiFiX4E3DiaU,6215
|
|
106
120
|
agentex/lib/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
121
|
agentex/lib/cli/utils/auth_utils.py,sha256=2CimSFs6pw2cwwc2SDTx5RYI7wcngzHYAqWimHCC-9o,1929
|
|
108
122
|
agentex/lib/cli/utils/cli_utils.py,sha256=dB5NaL81VjDCyHkqM-Joi1t1aTWrHCQdXUAQQu3VrbY,446
|
|
@@ -263,8 +277,8 @@ agentex/resources/tasks.py,sha256=PYclyozaR1az30ZcsEtP4WMvBoXPeF1mEvcNYOAWt0I,27
|
|
|
263
277
|
agentex/resources/tracker.py,sha256=bxRuzI9ThHrZtJbZoctU9vodE1kxAqcdlwQVrcbQTb4,15089
|
|
264
278
|
agentex/resources/messages/__init__.py,sha256=_J1eusFtr_k6zrAntJSuqx6LWEUBSTrV1OZZh7MaDPE,1015
|
|
265
279
|
agentex/resources/messages/batch.py,sha256=bYDIf0ZF3-sTKnGfFmzFQUn8LMtMYoniY977J3zr8q8,9653
|
|
266
|
-
agentex/resources/messages/messages.py,sha256=
|
|
267
|
-
agentex/types/__init__.py,sha256=
|
|
280
|
+
agentex/resources/messages/messages.py,sha256=ae48_YXRBqPiwBkHavhZpJaFVhIL-MYng6Y8BUlnAYU,24756
|
|
281
|
+
agentex/types/__init__.py,sha256=8Hg4rMRoOY8k9Vl69Hr9bzb1U_tWNw9DNQtUarLXx18,4725
|
|
268
282
|
agentex/types/acp_type.py,sha256=lEn_w4z-RIgyUVTQr8mm5l9OdFDQMDclbJU_lKa4Mi8,217
|
|
269
283
|
agentex/types/agent.py,sha256=hwgmtylJYezzmGJbzbBQ7sn3oV2_bCZqgqlNq9WpZ0g,1318
|
|
270
284
|
agentex/types/agent_list_params.py,sha256=s4heb3MQwMprmuol_smUDL2N0u-5WUbUCxt3J5Dqnag,515
|
|
@@ -285,6 +299,8 @@ agentex/types/event_list_params.py,sha256=Rrz0yo2w3gMTNYe3HQS9YCX1VktE_aaktuHezx
|
|
|
285
299
|
agentex/types/event_list_response.py,sha256=rjUCkwS0pXnfqHEVPEKZdLIGJ14uXOrjatuOfR36s5s,254
|
|
286
300
|
agentex/types/message_author.py,sha256=_IIVLAcZsLTG_vQWFpjWuxLIaHrc6wkv3q7qu5gam0o,218
|
|
287
301
|
agentex/types/message_create_params.py,sha256=Vt7Hig0lI8qxWDpJ4JhjfjglSzptI2PjzbrOD1Qkmxk,502
|
|
302
|
+
agentex/types/message_list_paginated_params.py,sha256=FSlXXsrm7gZZP5-bnvNswo4EFuzlA3weHWakBSUDI6I,446
|
|
303
|
+
agentex/types/message_list_paginated_response.py,sha256=VRPr20UNkBRchJrkroujPT46d830qK1Z-G6h1ziSUS4,582
|
|
288
304
|
agentex/types/message_list_params.py,sha256=dGhDWqZddCh5BIz-ebhQhwgiNEn8yujGjaVXdpHLbrc,427
|
|
289
305
|
agentex/types/message_list_response.py,sha256=YYDf-57zLS-E1eX3EZxz7c6XCuBcRBws01_q2G7uk4Y,277
|
|
290
306
|
agentex/types/message_style.py,sha256=nuoXzoDyP3KAQsQeKHaiby1EMxeY-8TJjWr8eMMpQEE,219
|
|
@@ -335,8 +351,8 @@ agentex/types/messages/batch_update_params.py,sha256=Ug5CThbD49a8j4qucg04OdmVrp_
|
|
|
335
351
|
agentex/types/messages/batch_update_response.py,sha256=TbSBe6SuPzjXXWSj-nRjT1JHGBooTshHQQDa1AixQA8,278
|
|
336
352
|
agentex/types/shared/__init__.py,sha256=IKs-Qn5Yja0kFh1G1kDqYZo43qrOu1hSoxlPdN-85dI,149
|
|
337
353
|
agentex/types/shared/delete_response.py,sha256=8qH3zvQXaOHYQSHyXi7UQxdR4miTzR7V9K4zXVsiUyk,215
|
|
338
|
-
agentex_sdk-0.7.
|
|
339
|
-
agentex_sdk-0.7.
|
|
340
|
-
agentex_sdk-0.7.
|
|
341
|
-
agentex_sdk-0.7.
|
|
342
|
-
agentex_sdk-0.7.
|
|
354
|
+
agentex_sdk-0.7.2.dist-info/METADATA,sha256=_r2aCaHdObhJWE1_uUUYBoPpCV07rmCt6LumP5cnYGA,15553
|
|
355
|
+
agentex_sdk-0.7.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
356
|
+
agentex_sdk-0.7.2.dist-info/entry_points.txt,sha256=V7vJuMZdF0UlvgX6KiBN7XUvq_cxF5kplcYvc1QlFaQ,62
|
|
357
|
+
agentex_sdk-0.7.2.dist-info/licenses/LICENSE,sha256=Q1AOx2FtRcMlyMgQJ9eVN2WKPq2mQ33lnB4tvWxabLA,11337
|
|
358
|
+
agentex_sdk-0.7.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|