supyagent 0.1.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.

Potentially problematic release.


This version of supyagent might be problematic. Click here for more details.

supyagent/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ """
2
+ Supyagent - LLM agents powered by supypowers.
3
+ """
4
+
5
+ __version__ = "0.1.0"
supyagent/__main__.py ADDED
@@ -0,0 +1,8 @@
1
+ """
2
+ Entry point for `python -m supyagent`.
3
+ """
4
+
5
+ from supyagent.cli.main import cli
6
+
7
+ if __name__ == "__main__":
8
+ cli()
@@ -0,0 +1 @@
1
+ """CLI module for supyagent."""