ColettoG commited on
Commit
5fdbe77
·
1 Parent(s): a64d26e

add: udpate gitignore

Browse files
.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
+ ]