File size: 452 Bytes
d810ed8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
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__",
]