agi-node 0.3.59__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.
- __init__.py +0 -0
- agent_worker/__init__.py +1 -0
- agent_worker/agent_worker.py +27 -0
- agi_manager/__init__.py +1 -0
- agi_manager/agi_manager.py +686 -0
- agi_manager/build.py +289 -0
- agi_node-0.3.59.dist-info/METADATA +64 -0
- agi_node-0.3.59.dist-info/RECORD +16 -0
- agi_node-0.3.59.dist-info/WHEEL +5 -0
- agi_node-0.3.59.dist-info/top_level.txt +6 -0
- dag_worker/__init__.py +1 -0
- dag_worker/dag_worker.py +188 -0
- pandas_worker/__init__.py +1 -0
- pandas_worker/pandas_worker.py +216 -0
- polars_worker/__init__.py +1 -0
- polars_worker/polars_worker.py +229 -0
__init__.py
ADDED
|
File without changes
|
agent_worker/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .agent_worker import *
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Module rapids_worker extension of agilab-core
|
|
3
|
+
|
|
4
|
+
Auteur: Jean-Pierre Morard
|
|
5
|
+
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
######################################################
|
|
9
|
+
# Agi Framework call back functions
|
|
10
|
+
######################################################
|
|
11
|
+
|
|
12
|
+
# Internal Libraries:
|
|
13
|
+
import warnings
|
|
14
|
+
from agi_manager import BaseWorker
|
|
15
|
+
import logging
|
|
16
|
+
warnings.filterwarnings("ignore")
|
|
17
|
+
logger = logging.getLogger(__name__)
|
|
18
|
+
|
|
19
|
+
class AgentWorker(BaseWorker):
|
|
20
|
+
"""
|
|
21
|
+
AgiAgentWorker Class
|
|
22
|
+
|
|
23
|
+
Inherits from:
|
|
24
|
+
Worker: Provides foundational worker functionalities.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
pass
|
agi_manager/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .agi_manager import WorkDispatcher, BaseWorker
|