sigma-terminal 3.2.0__py3-none-any.whl → 3.3.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 +2 -2
- sigma/app.py +347 -103
- sigma/cli.py +37 -6
- sigma/config.py +174 -3
- sigma/llm.py +256 -18
- sigma/setup.py +84 -16
- sigma_terminal-3.3.0.dist-info/METADATA +583 -0
- {sigma_terminal-3.2.0.dist-info → sigma_terminal-3.3.0.dist-info}/RECORD +11 -11
- sigma_terminal-3.2.0.dist-info/METADATA +0 -298
- {sigma_terminal-3.2.0.dist-info → sigma_terminal-3.3.0.dist-info}/WHEEL +0 -0
- {sigma_terminal-3.2.0.dist-info → sigma_terminal-3.3.0.dist-info}/entry_points.txt +0 -0
- {sigma_terminal-3.2.0.dist-info → sigma_terminal-3.3.0.dist-info}/licenses/LICENSE +0 -0
sigma/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Sigma v3.
|
|
2
|
+
Sigma v3.3.0 - Finance Research Agent
|
|
3
3
|
|
|
4
4
|
An elite finance research agent combining:
|
|
5
5
|
- Multi-provider AI (Google Gemini, OpenAI, Anthropic, Groq, xAI, Ollama)
|
|
@@ -12,7 +12,7 @@ An elite finance research agent combining:
|
|
|
12
12
|
- Monitoring, alerts, and watchlists
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
|
-
__version__ = "3.
|
|
15
|
+
__version__ = "3.3.0"
|
|
16
16
|
__author__ = "Sigma Team"
|
|
17
17
|
|
|
18
18
|
# Core functionality
|