Spaces:
Build error
Build error
acecalisto3
commited on
Commit
•
c2ac680
1
Parent(s):
929fdbd
Create __init__.py
Browse files- __init__.py +32 -0
__init__.py
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from .agents import (
|
2 |
+
TextGenerationTool,
|
3 |
+
AIAgent,
|
4 |
+
process_input,
|
5 |
+
run_code,
|
6 |
+
workspace_interface,
|
7 |
+
add_code_to_workspace,
|
8 |
+
display_chat_history,
|
9 |
+
display_workspace_projects,
|
10 |
+
generate_space_content,
|
11 |
+
analyze_code,
|
12 |
+
get_code_completion,
|
13 |
+
lint_code,
|
14 |
+
format_code
|
15 |
+
)
|
16 |
+
|
17 |
+
# Define __all__ to control what gets imported with "from package import *"
|
18 |
+
__all__ = [
|
19 |
+
'TextGenerationTool',
|
20 |
+
'AIAgent',
|
21 |
+
'process_input',
|
22 |
+
'run_code',
|
23 |
+
'workspace_interface',
|
24 |
+
'add_code_to_workspace',
|
25 |
+
'display_chat_history',
|
26 |
+
'display_workspace_projects',
|
27 |
+
'generate_space_content',
|
28 |
+
'analyze_code',
|
29 |
+
'get_code_completion',
|
30 |
+
'lint_code',
|
31 |
+
'format_code'
|
32 |
+
]
|