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 ADDED
File without changes
@@ -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
@@ -0,0 +1 @@
1
+ from .agi_manager import WorkDispatcher, BaseWorker