agnt5 0.1.0__cp39-abi3-macosx_11_0_arm64.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.
Files changed (49) hide show
  1. agnt5/__init__.py +307 -0
  2. agnt5/__pycache__/__init__.cpython-311.pyc +0 -0
  3. agnt5/__pycache__/agent.cpython-311.pyc +0 -0
  4. agnt5/__pycache__/context.cpython-311.pyc +0 -0
  5. agnt5/__pycache__/durable.cpython-311.pyc +0 -0
  6. agnt5/__pycache__/extraction.cpython-311.pyc +0 -0
  7. agnt5/__pycache__/memory.cpython-311.pyc +0 -0
  8. agnt5/__pycache__/reflection.cpython-311.pyc +0 -0
  9. agnt5/__pycache__/runtime.cpython-311.pyc +0 -0
  10. agnt5/__pycache__/task.cpython-311.pyc +0 -0
  11. agnt5/__pycache__/tool.cpython-311.pyc +0 -0
  12. agnt5/__pycache__/tracing.cpython-311.pyc +0 -0
  13. agnt5/__pycache__/types.cpython-311.pyc +0 -0
  14. agnt5/__pycache__/workflow.cpython-311.pyc +0 -0
  15. agnt5/_core.abi3.so +0 -0
  16. agnt5/agent.py +1086 -0
  17. agnt5/context.py +406 -0
  18. agnt5/durable.py +1050 -0
  19. agnt5/extraction.py +410 -0
  20. agnt5/llm/__init__.py +179 -0
  21. agnt5/llm/__pycache__/__init__.cpython-311.pyc +0 -0
  22. agnt5/llm/__pycache__/anthropic.cpython-311.pyc +0 -0
  23. agnt5/llm/__pycache__/azure.cpython-311.pyc +0 -0
  24. agnt5/llm/__pycache__/base.cpython-311.pyc +0 -0
  25. agnt5/llm/__pycache__/google.cpython-311.pyc +0 -0
  26. agnt5/llm/__pycache__/mistral.cpython-311.pyc +0 -0
  27. agnt5/llm/__pycache__/openai.cpython-311.pyc +0 -0
  28. agnt5/llm/__pycache__/together.cpython-311.pyc +0 -0
  29. agnt5/llm/anthropic.py +319 -0
  30. agnt5/llm/azure.py +348 -0
  31. agnt5/llm/base.py +315 -0
  32. agnt5/llm/google.py +373 -0
  33. agnt5/llm/mistral.py +330 -0
  34. agnt5/llm/model_registry.py +467 -0
  35. agnt5/llm/models.json +227 -0
  36. agnt5/llm/openai.py +334 -0
  37. agnt5/llm/together.py +377 -0
  38. agnt5/memory.py +746 -0
  39. agnt5/reflection.py +514 -0
  40. agnt5/runtime.py +699 -0
  41. agnt5/task.py +476 -0
  42. agnt5/testing.py +451 -0
  43. agnt5/tool.py +516 -0
  44. agnt5/tracing.py +624 -0
  45. agnt5/types.py +210 -0
  46. agnt5/workflow.py +897 -0
  47. agnt5-0.1.0.dist-info/METADATA +93 -0
  48. agnt5-0.1.0.dist-info/RECORD +49 -0
  49. agnt5-0.1.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,93 @@
1
+ Metadata-Version: 2.4
2
+ Name: agnt5
3
+ Version: 0.1.0
4
+ Classifier: Development Status :: 3 - Alpha
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.9
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Topic :: Software Development :: Libraries
13
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
14
+ Requires-Dist: pydantic>=2.0
15
+ Requires-Dist: httpx>=0.24.0
16
+ Requires-Dist: grpcio>=1.53.0
17
+ Requires-Dist: protobuf>=4.22.0
18
+ Requires-Dist: tenacity>=8.2.0
19
+ Requires-Dist: structlog>=23.1.0
20
+ Requires-Dist: opentelemetry-api>=1.17.0
21
+ Requires-Dist: opentelemetry-sdk>=1.17.0
22
+ Requires-Dist: typing-extensions>=4.0.0
23
+ Requires-Dist: setproctitle>=1.3.6
24
+ Requires-Dist: maturin>=1.8.6
25
+ Requires-Dist: aiohttp>=3.12.6
26
+ Requires-Dist: pytest>=7.3.0 ; extra == 'dev'
27
+ Requires-Dist: pytest-asyncio>=0.21.0 ; extra == 'dev'
28
+ Requires-Dist: pytest-cov>=4.0.0 ; extra == 'dev'
29
+ Requires-Dist: black>=23.3.0 ; extra == 'dev'
30
+ Requires-Dist: ruff>=0.0.261 ; extra == 'dev'
31
+ Requires-Dist: mypy>=1.2.0 ; extra == 'dev'
32
+ Requires-Dist: types-protobuf>=4.22.0 ; extra == 'dev'
33
+ Requires-Dist: maturin>=1.0,<2.0 ; extra == 'dev'
34
+ Requires-Dist: numpy>=1.24.0 ; extra == 'vector'
35
+ Requires-Dist: faiss-cpu>=1.7.4 ; extra == 'vector'
36
+ Requires-Dist: openai>=1.0.0 ; extra == 'llm'
37
+ Requires-Dist: anthropic>=0.18.0 ; extra == 'llm'
38
+ Requires-Dist: transformers>=4.30.0 ; extra == 'llm'
39
+ Provides-Extra: dev
40
+ Provides-Extra: vector
41
+ Provides-Extra: llm
42
+ Summary: Python SDK for AGNT5 Platform - Build durable, resilient agent-first applications
43
+ Keywords: agent,workflow,durable,ai,llm
44
+ Author-email: AGNT5 Team <team@agnt5.com>
45
+ License: MIT
46
+ Requires-Python: >=3.9
47
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
48
+ Project-URL: Homepage, https://agnt5.com
49
+ Project-URL: Documentation, https://docs.agnt5.com
50
+ Project-URL: Repository, https://github.com/agentifyme/agnt5-platform
51
+ Project-URL: Issue Tracker, https://github.com/agentifyme/agnt5-platform/issues
52
+
53
+ # AGNT5 Python SDK
54
+
55
+ Python SDK for building durable, resilient agent-first applications with the AGNT5 platform.
56
+
57
+ ## Features
58
+
59
+ - High-level AI components (Agents, Tools, Workflows)
60
+ - Durable execution with automatic failure recovery
61
+ - Memory systems (working, episodic, semantic, procedural)
62
+ - Multi-provider LLM support (Anthropic, OpenAI, Google, etc.)
63
+ - Rust-powered core for optimal performance
64
+
65
+ ## Installation
66
+
67
+ ```bash
68
+ pip install agnt5
69
+ ```
70
+
71
+ ## Quick Start
72
+
73
+ ```python
74
+ from agnt5 import Agent, tool
75
+
76
+ @tool
77
+ def search_web(query: str) -> str:
78
+ # Your search implementation
79
+ return f"Results for: {query}"
80
+
81
+ agent = Agent(
82
+ name="assistant",
83
+ instructions="You are a helpful AI assistant",
84
+ tools=[search_web],
85
+ memory=True
86
+ )
87
+
88
+ response = await agent.run("Search for Python tutorials")
89
+ ```
90
+
91
+ ## Documentation
92
+
93
+ See the full documentation at [docs.agnt5.dev](https://docs.agnt5.dev)
@@ -0,0 +1,49 @@
1
+ agnt5-0.1.0.dist-info/METADATA,sha256=k-64In6hUifyiABFp11TPKRsyD548ncksZ5m238Vgq4,3090
2
+ agnt5-0.1.0.dist-info/WHEEL,sha256=6kcRj6OxKF73Kk9A-y1ed3Vm1nD_hs5oAkJ02tSEJJE,102
3
+ agnt5/__init__.py,sha256=D4nnYZN7JIbKpoiQhxFkHyM8X_D94EAqabHORrQVE8E,7560
4
+ agnt5/__pycache__/__init__.cpython-311.pyc,sha256=Lkt83qsvtUthIXqYiX7WbArwMTzBwKR7n56beoUTeFU,9302
5
+ agnt5/__pycache__/agent.cpython-311.pyc,sha256=j63PS2PpPyAwRGUA6FL9um9TeYyCL59ym6No9Tm1CfQ,57079
6
+ agnt5/__pycache__/context.cpython-311.pyc,sha256=a-7drQfzB3XteBM9c5x1nvD4irEkYSBiahW8T48gL3E,18548
7
+ agnt5/__pycache__/durable.cpython-311.pyc,sha256=78pPyVOfGA4UftrZkuBsv4s_bnhQZKyYEx8_FOdjC40,50507
8
+ agnt5/__pycache__/extraction.cpython-311.pyc,sha256=Xqu8lZoqj67FREFcsCjsVIXfj5taeOpBSC1CMuK1oms,16025
9
+ agnt5/__pycache__/memory.cpython-311.pyc,sha256=PdoJI8nuCl-YHi5ZwgR5Rp-puK1GmqAWglcU4N3kBgU,38404
10
+ agnt5/__pycache__/reflection.cpython-311.pyc,sha256=R3ArXswf5Amg-5xf3ZSsbqaiQ_CbYpqonpBw0A0THFQ,22046
11
+ agnt5/__pycache__/runtime.cpython-311.pyc,sha256=rDMvh7iosIxa2kLoEufMxKSk02fFlN4_Q5BiQSnEPRI,39874
12
+ agnt5/__pycache__/task.cpython-311.pyc,sha256=QahCSZtEaDwWqKjcFnraZDa0WjUx7VjB57FnEP28bmw,25428
13
+ agnt5/__pycache__/tool.cpython-311.pyc,sha256=D8Hi1uJBxZffUyjmgTbFyo0FOMWxGmVYSlxG-Xdx23k,24811
14
+ agnt5/__pycache__/tracing.cpython-311.pyc,sha256=Am0LSowGyXuSl_8cQh1VO43JhLy646ayKnZTMP0ed0Y,33223
15
+ agnt5/__pycache__/types.cpython-311.pyc,sha256=pkSu7vsriDMTycZpkmOVQS_GI5yoE_q_lppEQAmRKnk,12938
16
+ agnt5/__pycache__/workflow.cpython-311.pyc,sha256=rftZh_sg52-P5kxUM5hwU2WhOm_qJvJxr3D8ltiH300,44734
17
+ agnt5/_core.abi3.so,sha256=JmKDBh9yG2N-6lii1bygkTAi3pwmj-RVhiF1GZAxBXY,5121024
18
+ agnt5/agent.py,sha256=0RRdIyAehXSSp68CGENskJaSE7P0NQRXJLhTsHy6rfc,43748
19
+ agnt5/context.py,sha256=sDkoS0AYsj3sHbKfttHzxcCrs5x-xa5CpfCNgUs-2oE,12116
20
+ agnt5/durable.py,sha256=MT0FhYrVf1Abg5gSJKaowcE23DcD0Gpfjx_uT8UNUrI,39375
21
+ agnt5/extraction.py,sha256=daqwvDegZstU-0L4QxuaBpEiFlBiYIb8CXLRH5OQSuI,13346
22
+ agnt5/llm/__init__.py,sha256=uxVIYf2eiu5TGa2uP3m8vWlOF_CWc1Tfm7h9KSYTqXE,4982
23
+ agnt5/llm/__pycache__/__init__.cpython-311.pyc,sha256=SdSdRuwzIO_A5Ov94AwqNs2VKIjshWkM6_paCTpMnVk,5738
24
+ agnt5/llm/__pycache__/anthropic.cpython-311.pyc,sha256=iItoGaEVQ-gS4yp25nXkPhTHl_X-Kko_583dCnFRnZY,13526
25
+ agnt5/llm/__pycache__/azure.cpython-311.pyc,sha256=G9VwD1s0H5yli3CQS7RZw-00_VA3H6ENcZY37IQnjVw,15354
26
+ agnt5/llm/__pycache__/base.cpython-311.pyc,sha256=qpkrRDAWqiBZmytOZlROG-ZJ12arnPpLpWfKDm5dlgg,16650
27
+ agnt5/llm/__pycache__/google.cpython-311.pyc,sha256=puXdcpxdHrSy02ISUechDtaiNMUUu5IB5H7m5_pK0S8,15961
28
+ agnt5/llm/__pycache__/mistral.cpython-311.pyc,sha256=OcPEAejerjurGIPctPdc7FfZYO1LWAZEpbsO876Eq_c,14389
29
+ agnt5/llm/__pycache__/openai.cpython-311.pyc,sha256=qC9h9_Rcu-3HEdE8TbGjW6Wi9hSiiLZfSkdiyPqVsnQ,13839
30
+ agnt5/llm/__pycache__/together.cpython-311.pyc,sha256=7MUoTpJUyVe_9BUM1BUu-Sk1-5AubUCoiBwazGxkS3I,16695
31
+ agnt5/llm/anthropic.py,sha256=stSGU0IrX1Sc4ByHpk4L4nH-duZzPtds8YyapZx0754,11956
32
+ agnt5/llm/azure.py,sha256=0sCFlUldqCTIl-3515Enm4Q38dYF_u_nxYROFZig_No,13877
33
+ agnt5/llm/base.py,sha256=_VPyFKIkFF_IeV6Z25Lzs4t3eWglDnvGnleM3LDSCrM,10229
34
+ agnt5/llm/google.py,sha256=BIl-S1Z92rG7KmrlPTACEC5sFD7Tg90gGeK8-SqdoDc,14985
35
+ agnt5/llm/mistral.py,sha256=d084ncZLrGXQc3EFKr0rfoVra-hSJuL9JAWEQ7Y7eF8,12807
36
+ agnt5/llm/model_registry.py,sha256=cPKShP3vg3XL8SGamIfnfeYEQThl8FJjYbZPxVZu038,19040
37
+ agnt5/llm/models.json,sha256=MtmdUt4TGaNs6P8ZDkly9yh_j40OfJdBHmtMEz68Czc,8243
38
+ agnt5/llm/openai.py,sha256=8Y1YkeGRrosB-rMtVMAIhIBLtmN8JqlxBlMYhuZBQiA,12508
39
+ agnt5/llm/together.py,sha256=a6w0RyLloZDtyXt9TFrwM8ZjK7nDEZHdi5OO0Y1UlZg,15123
40
+ agnt5/memory.py,sha256=aJuEPEKdFNqRwOb8CHYormKfz53-JW8a5R14aa7YgkE,25355
41
+ agnt5/reflection.py,sha256=cXb7A3Yo8JgdIJC0mgwd8g5DRBwQrlWeRccYyYMk544,18016
42
+ agnt5/runtime.py,sha256=5Nh_EyqtVI4W6fNbqd0WLh7cAishcBHzzpsTLux1X4M,27907
43
+ agnt5/task.py,sha256=0wAS6kIGlGyq9WtnWujvqD_L54vGZPkNjqz2MPN0z78,16614
44
+ agnt5/testing.py,sha256=TeTIqJFU8IihAMXKM4ozK01-8zOaj5xLeBKUw3QZbNY,12763
45
+ agnt5/tool.py,sha256=gmMqOTtX-l_Xf2wgdaV1V6S3EzRnxLhXSx-ZlQIqSCs,17866
46
+ agnt5/tracing.py,sha256=H42_LIaDoEtMT2nnsiKxpX0I09YLflZSxIflBfpvHg8,20906
47
+ agnt5/types.py,sha256=jGyMX-MaUZmMCPlyTyxsELPD_P759lSGLomXzjxnWAE,5882
48
+ agnt5/workflow.py,sha256=JrNVyGBOn_taIyQJoUEen9HgekrhlyQky13KsxdhAyc,33162
49
+ agnt5-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.8.6)
3
+ Root-Is-Purelib: false
4
+ Tag: cp39-abi3-macosx_11_0_arm64