forked from HKUDS/DeepCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
21 lines (17 loc) · 452 Bytes
/
Copy path__init__.py
File metadata and controls
21 lines (17 loc) · 452 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
DeepCode - AI Research Engine
🧬 Next-Generation AI Research Automation Platform
⚡ Transform research papers into working code automatically
"""
__version__ = "1.0.4"
__author__ = "DeepCode Team"
__url__ = "https://github.com/HKUDS/DeepCode"
# Import main components for easy access
from utils import FileProcessor, DialogueLogger
__all__ = [
"FileProcessor",
"DialogueLogger",
"__version__",
"__author__",
"__url__",
]