Agentic-GenUI-Tools 0.2.0__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,10 @@
1
+ """Deterministic, forgiving Adaptive Cards for framework-independent agent tools."""
2
+ from .builder import render_card
3
+ from .normalize import BuilderConfig
4
+ from .theme import host_config
5
+ from .tool import (build_adaptive_card, build_adaptive_card_json, build_adaptive_card_object,
6
+ describe_adaptive_card, make_adaptive_card_tool, tool_schema)
7
+
8
+ __version__ = "0.2.0"
9
+ __all__ = ["BuilderConfig", "build_adaptive_card", "build_adaptive_card_json", "build_adaptive_card_object",
10
+ "describe_adaptive_card", "host_config", "make_adaptive_card_tool", "render_card", "tool_schema"]