Spaces:
Running
Running
add: udpate gitignore
Browse files- .gitignore +0 -1
- src/agents/dca/__init__.py +17 -0
- src/agents/search/__init__.py +1 -0
- src/integrations/__init__.py +1 -0
- src/integrations/panorama_gateway/__init__.py +11 -0
.gitignore
CHANGED
|
@@ -1,3 +1,2 @@
|
|
| 1 |
__pycache__/
|
| 2 |
**/__pycache__/
|
| 3 |
-
__init__.py
|
|
|
|
| 1 |
__pycache__/
|
| 2 |
**/__pycache__/
|
|
|
src/agents/dca/__init__.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""DCA agent package exposing helper factories."""
|
| 2 |
+
|
| 3 |
+
from __future__ import annotations
|
| 4 |
+
|
| 5 |
+
__all__ = ["DcaAgent", "get_tools"]
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
def __getattr__(name: str):
|
| 9 |
+
if name == "DcaAgent":
|
| 10 |
+
from .agent import DcaAgent as _DcaAgent
|
| 11 |
+
|
| 12 |
+
return _DcaAgent
|
| 13 |
+
if name == "get_tools":
|
| 14 |
+
from .tools import get_tools as _get_tools
|
| 15 |
+
|
| 16 |
+
return _get_tools
|
| 17 |
+
raise AttributeError(name)
|
src/agents/search/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""Search agent package."""
|
src/integrations/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# Namespace package for integration clients.
|
src/integrations/panorama_gateway/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Panorama data gateway client initialization helpers."""
|
| 2 |
+
|
| 3 |
+
from .client import PanoramaGatewayClient, PanoramaGatewayError
|
| 4 |
+
from .config import PanoramaGatewaySettings, get_panorama_settings
|
| 5 |
+
|
| 6 |
+
__all__ = [
|
| 7 |
+
"PanoramaGatewayClient",
|
| 8 |
+
"PanoramaGatewayError",
|
| 9 |
+
"PanoramaGatewaySettings",
|
| 10 |
+
"get_panorama_settings",
|
| 11 |
+
]
|