acp-sdk 0.0.6__py3-none-any.whl → 1.0.0rc1__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.
Files changed (69) hide show
  1. acp_sdk/client/__init__.py +1 -0
  2. acp_sdk/client/client.py +135 -0
  3. acp_sdk/models.py +219 -0
  4. acp_sdk/server/__init__.py +2 -0
  5. acp_sdk/server/agent.py +32 -0
  6. acp_sdk/server/bundle.py +133 -0
  7. acp_sdk/server/context.py +6 -0
  8. acp_sdk/server/server.py +137 -0
  9. acp_sdk/server/telemetry.py +45 -0
  10. acp_sdk/server/utils.py +12 -0
  11. acp_sdk-1.0.0rc1.dist-info/METADATA +53 -0
  12. acp_sdk-1.0.0rc1.dist-info/RECORD +15 -0
  13. acp/__init__.py +0 -138
  14. acp/cli/__init__.py +0 -6
  15. acp/cli/claude.py +0 -139
  16. acp/cli/cli.py +0 -471
  17. acp/client/__main__.py +0 -79
  18. acp/client/session.py +0 -372
  19. acp/client/sse.py +0 -145
  20. acp/client/stdio.py +0 -153
  21. acp/server/__init__.py +0 -3
  22. acp/server/__main__.py +0 -50
  23. acp/server/highlevel/__init__.py +0 -9
  24. acp/server/highlevel/agents/__init__.py +0 -5
  25. acp/server/highlevel/agents/agent_manager.py +0 -110
  26. acp/server/highlevel/agents/base.py +0 -20
  27. acp/server/highlevel/agents/templates.py +0 -21
  28. acp/server/highlevel/context.py +0 -185
  29. acp/server/highlevel/exceptions.py +0 -25
  30. acp/server/highlevel/prompts/__init__.py +0 -4
  31. acp/server/highlevel/prompts/base.py +0 -167
  32. acp/server/highlevel/prompts/manager.py +0 -50
  33. acp/server/highlevel/prompts/prompt_manager.py +0 -33
  34. acp/server/highlevel/resources/__init__.py +0 -23
  35. acp/server/highlevel/resources/base.py +0 -48
  36. acp/server/highlevel/resources/resource_manager.py +0 -94
  37. acp/server/highlevel/resources/templates.py +0 -80
  38. acp/server/highlevel/resources/types.py +0 -185
  39. acp/server/highlevel/server.py +0 -705
  40. acp/server/highlevel/tools/__init__.py +0 -4
  41. acp/server/highlevel/tools/base.py +0 -83
  42. acp/server/highlevel/tools/tool_manager.py +0 -53
  43. acp/server/highlevel/utilities/__init__.py +0 -1
  44. acp/server/highlevel/utilities/func_metadata.py +0 -210
  45. acp/server/highlevel/utilities/logging.py +0 -43
  46. acp/server/highlevel/utilities/types.py +0 -54
  47. acp/server/lowlevel/__init__.py +0 -3
  48. acp/server/lowlevel/helper_types.py +0 -9
  49. acp/server/lowlevel/server.py +0 -643
  50. acp/server/models.py +0 -17
  51. acp/server/session.py +0 -315
  52. acp/server/sse.py +0 -175
  53. acp/server/stdio.py +0 -83
  54. acp/server/websocket.py +0 -61
  55. acp/shared/__init__.py +0 -0
  56. acp/shared/context.py +0 -14
  57. acp/shared/exceptions.py +0 -14
  58. acp/shared/memory.py +0 -87
  59. acp/shared/progress.py +0 -40
  60. acp/shared/session.py +0 -413
  61. acp/shared/version.py +0 -3
  62. acp/types.py +0 -1258
  63. acp_sdk-0.0.6.dist-info/METADATA +0 -46
  64. acp_sdk-0.0.6.dist-info/RECORD +0 -57
  65. acp_sdk-0.0.6.dist-info/entry_points.txt +0 -2
  66. acp_sdk-0.0.6.dist-info/licenses/LICENSE +0 -22
  67. {acp/client → acp_sdk}/__init__.py +0 -0
  68. {acp → acp_sdk}/py.typed +0 -0
  69. {acp_sdk-0.0.6.dist-info → acp_sdk-1.0.0rc1.dist-info}/WHEEL +0 -0
@@ -1,46 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: acp-sdk
3
- Version: 0.0.6
4
- Summary: Agent Communication Protocol SDK
5
- Project-URL: Homepage, https://github.com/i-am-bee/beeai
6
- Project-URL: Repository, https://github.com/i-am-bee/beeai
7
- Project-URL: Issues, https://github.com/i-am-bee/beeai/issues
8
- Author: IBM Corp., Anthropic, PBC
9
- License: MIT
10
- License-File: LICENSE
11
- Keywords: acp,git,llm
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: MIT License
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Programming Language :: Python :: 3.13
20
- Requires-Python: <4.0,>=3.10
21
- Requires-Dist: anyio>=4.5
22
- Requires-Dist: httpx-sse>=0.4
23
- Requires-Dist: httpx>=0.27
24
- Requires-Dist: opentelemetry-api>=1.0.0
25
- Requires-Dist: pydantic-settings>=2.5.2
26
- Requires-Dist: pydantic<3.0.0,>=2.7.2
27
- Requires-Dist: setuptools==75.8.0
28
- Requires-Dist: sse-starlette>=1.6.1
29
- Requires-Dist: starlette>=0.27
30
- Requires-Dist: uvicorn>=0.23.1
31
- Provides-Extra: cli
32
- Requires-Dist: python-dotenv>=1.0.0; extra == 'cli'
33
- Requires-Dist: typer>=0.12.4; extra == 'cli'
34
- Provides-Extra: rich
35
- Requires-Dist: rich>=13.9.4; extra == 'rich'
36
- Description-Content-Type: text/markdown
37
-
38
- # Agent Communication Protocol Python SDK
39
-
40
- ## Disclaimer
41
-
42
- The current [MCP](https://modelcontextprotocol.io/) based implementation should be treated as temporary and exploratory. It's main purpose is to enable integration of various agents into the platform and to explore underlying protocols, transports and possible multi-agent patterns. In Q2 2025, we expect to rebuild the SDK from the ground up.
43
-
44
- ## Overview
45
-
46
- The Agent Communication Protocol allows applications to use agents through a uniform interface. It is built on top of [Model Context Protocol](https://modelcontextprotocol.io/).
@@ -1,57 +0,0 @@
1
- acp/__init__.py,sha256=29GBp8pNLgEHWG9UAHRx40CEN2AZq1qzgGNtBzwe4vk,3171
2
- acp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- acp/types.py,sha256=BAx9zrXXxB8uIunke7SiHeBRkT7t1kui5M7K2aKavlg,36526
4
- acp/cli/__init__.py,sha256=Ii284TNoG5lxTP40ETMGhHEq3lQZWxu9m9JuU57kUpQ,87
5
- acp/cli/claude.py,sha256=r_QT8e7Z9xpBzmtXS3L6OBeaKaFwERHfpmBpa43n0xc,4435
6
- acp/cli/cli.py,sha256=Ons4CnJUooOmTq51hjRoHoJpw97t8-yGLvvzNnNqjXg,13900
7
- acp/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- acp/client/__main__.py,sha256=3fMDbCiR5B5BAPPeVnMkCrQVX5BdqkIMFW8QbAtpQcc,2265
9
- acp/client/session.py,sha256=jBiOQCYfhhE7p-zmhoSRYpv-pOYlqHRdoJJr2rEci9M,11506
10
- acp/client/sse.py,sha256=pFIabPUMz21DHVeZLPdja4A7yDExWzmE5Py4OqU9Uw8,6641
11
- acp/client/stdio.py,sha256=f4Q8pmXCHr14tMfyjWuMQ5AoT2F6rvnY_gcqLaa4BvY,4686
12
- acp/server/__init__.py,sha256=Y0b-MWN_eAL9rOye8OxUt9UUZguWBix4yEdJScXbYNU,95
13
- acp/server/__main__.py,sha256=Rf4EUZuiP6AqgMbsw9CvyA4nUmJcKTq1h54GWLAndNY,1328
14
- acp/server/models.py,sha256=XqJzNfbleQJ_Wj-fglgZrkQEK93EZ0dMg8DeANeHygQ,341
15
- acp/server/session.py,sha256=W15GjzDsUMPKoKSR-vt2hRJm-WTef1OU_8aQhYiAoMU,11444
16
- acp/server/sse.py,sha256=hGdtFOkUlZJOoglI0UQYxz6KyZnaf2coHeBuHytCi7I,6716
17
- acp/server/stdio.py,sha256=QEscVVsH4h9G4e-NWsjl7_US0pCCPAzwR8-xfRbjads,2889
18
- acp/server/websocket.py,sha256=5sw6-64ES7rSLQ7UfY5aXSOnh16B3HWK2410kiDcxcU,2225
19
- acp/server/highlevel/__init__.py,sha256=zpNfKzPtHeuOT74iaoT1938XpXurH82E_NJEg1n-p4E,247
20
- acp/server/highlevel/context.py,sha256=1vEoiNhJQ4khbS1Ln5FAFj6rqPsXfiUB47-nDzYK0Is,5645
21
- acp/server/highlevel/exceptions.py,sha256=FQhduu4gNAGIfpW9Twx4LsN8UR2KONdxmubZDbXNDKg,506
22
- acp/server/highlevel/server.py,sha256=t82jPgqCm7YZfcxIaeCkLDXVXxUgpPRJJ2e6MtA2baA,24239
23
- acp/server/highlevel/agents/__init__.py,sha256=iahXO9_-1Fm0_6HcaFwcgiHTvY3v83GAVzWvVaTFOog,155
24
- acp/server/highlevel/agents/agent_manager.py,sha256=ZW5-h07xWwAjJAG1bNLiO4daOqi9QNmD59rj_C2Iabs,3790
25
- acp/server/highlevel/agents/base.py,sha256=Ets5AYbkB8gsRVMKaNjVRBonw6sOtAqmxIAti6emlNE,700
26
- acp/server/highlevel/agents/templates.py,sha256=gDfWrsO6UjRLAGaJQYxv_KTp0or5a8SBQvXCYjb4oww,761
27
- acp/server/highlevel/prompts/__init__.py,sha256=4BsMxoYolpoxg74xkkkzCFL8vvdkLVJ5cIPNs1ND1Jo,99
28
- acp/server/highlevel/prompts/base.py,sha256=m5-CB-Jtu5V5fowml-7IQZDpqa7UmKRHc7Ex2tskmQk,5554
29
- acp/server/highlevel/prompts/manager.py,sha256=UjGCo9w1RBcQ8Eo9aVEvLOrzSI9T1r7jEbXuvuklIuc,1489
30
- acp/server/highlevel/prompts/prompt_manager.py,sha256=uImtoODLiBtrMHl3C9K43RQvTf8kqXoIJ_qn0dst6HU,1116
31
- acp/server/highlevel/resources/__init__.py,sha256=e4S369jBoJt07ez9_ZaJefzGfz4kr9nGwG4KPMzMHc8,464
32
- acp/server/highlevel/resources/base.py,sha256=UFl1SalsiRsicCUw_ItTUl4BnSW4WeV-aMIr0BI7spY,1355
33
- acp/server/highlevel/resources/resource_manager.py,sha256=zHcMgMH0A1WZQO4llbzFfT_No2vWqbqrMvwEFCorzNU,3278
34
- acp/server/highlevel/resources/templates.py,sha256=WUvvHrk7dJEFtIBRR0KO0AmMkwcmJzMRCMFajxrZ_6M,2869
35
- acp/server/highlevel/resources/types.py,sha256=ATLms_GpQ5JoJRJrBBLEbcbVhtM7eDh98qF75B55ydw,6199
36
- acp/server/highlevel/tools/__init__.py,sha256=ZboxhyMJDl87Svjov8YwNYwNZi55P9VhmpTjBZLesnk,96
37
- acp/server/highlevel/tools/base.py,sha256=ss2iwyf3qqac3OT73ol90shIlujtVlIN7aLY6-bWUZc,2847
38
- acp/server/highlevel/tools/tool_manager.py,sha256=1JaEksw23U-p7ePbFeVRQGi8bjdwzM3VcNhP2LJI-cQ,1665
39
- acp/server/highlevel/utilities/__init__.py,sha256=-imJ8S-rXmbXMWeDamldP-dHDqAPg_wwmPVz-LNX14E,31
40
- acp/server/highlevel/utilities/func_metadata.py,sha256=eRrKZFcVyWXpfFnzERIWPxu-LzAcq9AlpcM3jo5T6Ys,7653
41
- acp/server/highlevel/utilities/logging.py,sha256=07rXwvLf9Yd0EJCeu5bFlbXt-qr94Aqh5wQi4RW93Oo,980
42
- acp/server/highlevel/utilities/types.py,sha256=OR1JbgpRpGf19_-DOhwNr-OGPC-rCz1FLd8YBa4XqCc,1760
43
- acp/server/lowlevel/__init__.py,sha256=mS7slrVoWzHMYqDHDIJ7oRZxwPZG_I63UVQiJN311YY,93
44
- acp/server/lowlevel/helper_types.py,sha256=LmzGNx9FU258TKDyKjwfzH_KOnH4Mkk_k8i9EIFmN7Y,189
45
- acp/server/lowlevel/server.py,sha256=4kHco_HLGvjC0Gy28FR8jnMs2b7cVsfJ_bo1C9jY7CY,22751
46
- acp/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- acp/shared/context.py,sha256=sc81CXNrn3OX_yX84nBfnGLvEHBUY9-rIpdb4S6mGus,350
48
- acp/shared/exceptions.py,sha256=gtaybYun_cRp7ZHoxV4iiorN8Dn_yUoj1-fpeMOnM2Y,316
49
- acp/shared/memory.py,sha256=RHEnuOVDkT8LrviEvUS5JGl0qs55DA0jcsiuOg82wa8,2802
50
- acp/shared/progress.py,sha256=enn_ZLnIPGS8107_rh7JgKvZXcXBUEv9STZdn84wIw0,1033
51
- acp/shared/session.py,sha256=VI60P5ecaYQtdllMHpd6uZ3yggTxyGVYRaCKXfpIsm8,15784
52
- acp/shared/version.py,sha256=si_GMtVN2H0Y3Rn4QNf8u2V0kZRTzzlMHuCWqDDDK1s,106
53
- acp_sdk-0.0.6.dist-info/METADATA,sha256=UJY8A57Jc5LEV3LfalIZW8JZ1wZwGrJA6Lw8dgDsWcY,1932
54
- acp_sdk-0.0.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
55
- acp_sdk-0.0.6.dist-info/entry_points.txt,sha256=zJgYH5TTBxQ1oBzEg-0RfEk09Te1W2LkqbyoLpFe9CA,42
56
- acp_sdk-0.0.6.dist-info/licenses/LICENSE,sha256=aLcXJ7ZsI7zZmq4n0iIQ6KYB3EJMtRJGLr7n514PE30,1100
57
- acp_sdk-0.0.6.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- acp = acp.cli:app [cli]
@@ -1,22 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 Anthropic, PBC
4
- Copyright (c) 2025 IBM Corp.
5
-
6
- Permission is hereby granted, free of charge, to any person obtaining a copy
7
- of this software and associated documentation files (the "Software"), to deal
8
- in the Software without restriction, including without limitation the rights
9
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- copies of the Software, and to permit persons to whom the Software is
11
- furnished to do so, subject to the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be included in all
14
- copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- SOFTWARE.
File without changes
File without changes