Bread-F commited on
Commit
2a7ce16
·
verified ·
1 Parent(s): bbec570

Update lagent/actions/__init__.py

Browse files
Files changed (1) hide show
  1. 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
- 'ActionExecutor',
19
- 'AsyncActionExecutor',
20
- 'InvalidAction',
21
- 'FinishAction',
22
- 'NoAction',
23
- 'BINGMap',
24
- 'AsyncBINGMap',
25
- 'ArxivSearch',
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
+ ]