Update lagent/actions/__init__.py
Browse files- lagent/actions/__init__.py +10 -32
lagent/actions/__init__.py
CHANGED
@@ -12,36 +12,14 @@ from .parser import BaseParser, JsonParser, TupleParser
|
|
12 |
from .ppt import PPT, AsyncPPT
|
13 |
from .python_interpreter import AsyncPythonInterpreter, PythonInterpreter
|
14 |
from .web_browser import AsyncWebBrowser, WebBrowser
|
15 |
-
|
16 |
__all__ = [
|
17 |
-
'BaseAction',
|
18 |
-
'
|
19 |
-
'
|
20 |
-
'
|
21 |
-
'
|
22 |
-
'
|
23 |
-
'
|
24 |
-
'
|
25 |
-
|
26 |
-
'AsyncArxivSearch',
|
27 |
-
'GoogleSearch',
|
28 |
-
'AsyncGoogleSearch',
|
29 |
-
'GoogleScholar',
|
30 |
-
'AsyncGoogleScholar',
|
31 |
-
'IPythonInterpreter',
|
32 |
-
'AsyncIPythonInterpreter',
|
33 |
-
'IPythonInteractive',
|
34 |
-
'AsyncIPythonInteractive',
|
35 |
-
'IPythonInteractiveManager',
|
36 |
-
'PythonInterpreter',
|
37 |
-
'AsyncPythonInterpreter',
|
38 |
-
'PPT',
|
39 |
-
'AsyncPPT',
|
40 |
-
'WebBrowser',
|
41 |
-
'AsyncWebBrowser',
|
42 |
-
'BaseParser',
|
43 |
-
'JsonParser',
|
44 |
-
'TupleParser',
|
45 |
-
'tool_api',
|
46 |
-
'AsyncActionMixin',
|
47 |
-
]
|
|
|
12 |
from .ppt import PPT, AsyncPPT
|
13 |
from .python_interpreter import AsyncPythonInterpreter, PythonInterpreter
|
14 |
from .web_browser import AsyncWebBrowser, WebBrowser
|
15 |
+
from .weather_query import WeatherQuery
|
16 |
__all__ = [
|
17 |
+
'BaseAction', 'ActionExecutor', 'AsyncActionExecutor', 'InvalidAction',
|
18 |
+
'FinishAction', 'NoAction', 'BINGMap', 'AsyncBINGMap', 'ArxivSearch',
|
19 |
+
'AsyncArxivSearch', 'GoogleSearch', 'AsyncGoogleSearch', 'GoogleScholar',
|
20 |
+
'AsyncGoogleScholar', 'IPythonInterpreter', 'AsyncIPythonInterpreter',
|
21 |
+
'IPythonInteractive', 'AsyncIPythonInteractive',
|
22 |
+
'IPythonInteractiveManager', 'PythonInterpreter', 'AsyncPythonInterpreter',
|
23 |
+
'PPT', 'AsyncPPT', 'WebBrowser', 'AsyncWebBrowser', 'BaseParser',
|
24 |
+
'JsonParser', 'TupleParser', 'tool_api', 'WeatherQuery' # 这里
|
25 |
+
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|