sigma-terminal 2.0.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.
sigma/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ """Sigma - Elite Financial Research Agent."""
2
+
3
+ __version__ = "2.0.0"
4
+ __author__ = "Sigma"
5
+
6
+ from sigma.core.agent import SigmaAgent
7
+ from sigma.core.config import LLMProvider, get_settings
8
+
9
+ __all__ = ["SigmaAgent", "LLMProvider", "get_settings"]
sigma/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Sigma package entry point."""
2
+
3
+ from sigma.app import main
4
+
5
+ if __name__ == "__main__":
6
+ main()