alita-sdk 0.3.458__py3-none-any.whl → 0.3.459__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.
- alita_sdk/cli/__init__.py +10 -0
- alita_sdk/cli/__main__.py +17 -0
- alita_sdk/cli/agents.py +1055 -0
- alita_sdk/cli/cli.py +156 -0
- alita_sdk/cli/config.py +134 -0
- alita_sdk/cli/formatting.py +182 -0
- alita_sdk/cli/toolkit.py +330 -0
- alita_sdk/runtime/tools/function.py +3 -4
- {alita_sdk-0.3.458.dist-info → alita_sdk-0.3.459.dist-info}/METADATA +6 -1
- {alita_sdk-0.3.458.dist-info → alita_sdk-0.3.459.dist-info}/RECORD +14 -6
- alita_sdk-0.3.459.dist-info/entry_points.txt +2 -0
- {alita_sdk-0.3.458.dist-info → alita_sdk-0.3.459.dist-info}/WHEEL +0 -0
- {alita_sdk-0.3.458.dist-info → alita_sdk-0.3.459.dist-info}/licenses/LICENSE +0 -0
- {alita_sdk-0.3.458.dist-info → alita_sdk-0.3.459.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Alita SDK CLI - Command-line interface for testing agents and toolkits.
|
|
3
|
+
|
|
4
|
+
This module provides a CLI alternative to the Streamlit interface, enabling
|
|
5
|
+
direct terminal access for GitHub Copilot integration and automation workflows.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from .cli import cli
|
|
9
|
+
|
|
10
|
+
__all__ = ['cli']
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Entry point for running the Alita CLI as a module.
|
|
3
|
+
|
|
4
|
+
Usage:
|
|
5
|
+
python -m alita_sdk.cli [command] [options]
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
# Suppress warnings before any imports
|
|
9
|
+
import warnings
|
|
10
|
+
warnings.filterwarnings('ignore', category=DeprecationWarning)
|
|
11
|
+
warnings.filterwarnings('ignore', category=UserWarning)
|
|
12
|
+
warnings.filterwarnings('ignore', message='Unverified HTTPS request')
|
|
13
|
+
|
|
14
|
+
from .cli import cli
|
|
15
|
+
|
|
16
|
+
if __name__ == '__main__':
|
|
17
|
+
cli()
|