bub-acp-server 0.0.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.
@@ -0,0 +1,8 @@
1
+ """Expose Bub as an ACP agent."""
2
+
3
+ from __future__ import annotations
4
+
5
+ __all__ = ["ACPServerPlugin", "BubACPAgent", "run_acp_agent"]
6
+
7
+ from bub_acp_server.agent import BubACPAgent, run_acp_agent
8
+ from bub_acp_server.plugin import ACPServerPlugin