Initial Structure

This commit is contained in:
Thomas Hollenstein 2026-05-21 16:00:42 +02:00
commit dcd7a5df4f
17 changed files with 86 additions and 0 deletions

17
.gitignore vendored Normal file
View File

@ -0,0 +1,17 @@
# Python
.venv/
__pycache__/
*.pyc
# tooling
.pytest_cache/
.ruff_chache/
# editors
.idea/
# OS noise
.DS_store
# Critical
.env

1
README.me Normal file
View File

@ -0,0 +1 @@
AISE AI Code Editor

44
requirements.txt Normal file
View File

@ -0,0 +1,44 @@
altair==6.1.0
anyio==4.13.0
attrs==26.1.0
blinker==1.9.0
cachetools==7.1.3
certifi==2026.5.20
charset-normalizer==3.4.7
click==8.4.0
colorama==0.4.6
gitdb==4.0.12
GitPython==3.1.50
h11==0.16.0
httptools==0.7.1
idna==3.15
itsdangerous==2.2.0
Jinja2==3.1.6
jsonschema==4.26.0
jsonschema-specifications==2025.9.1
MarkupSafe==3.0.3
narwhals==2.21.2
numpy==2.4.6
packaging==26.2
pandas==3.0.3
pillow==12.2.0
protobuf==7.35.0
pyarrow==24.0.0
pydeck==0.9.2
python-dateutil==2.9.0.post0
python-multipart==0.0.29
referencing==0.37.0
requests==2.34.2
rpds-py==0.30.0
six==1.17.0
smmap==5.0.3
starlette==1.0.0
streamlit==1.57.0
tenacity==9.1.4
toml==0.10.2
typing_extensions==4.15.0
tzdata==2026.2
urllib3==2.7.0
uvicorn==0.47.0
watchdog==6.0.0
websockets==16.0

12
src/__init__.py Normal file
View File

@ -0,0 +1,12 @@
# # src/__init__.py
# # Initialisierung des Pakets
# __version__ = "1.0.0"
# # Export der wichtigsten Module
# from .backend.file_manager import FileManager
# from .backend.chat_manager import ChatManager
# from .backend.system_prompter import SystemPrompter
# from .backend.search_manager import SearchManager
# from .backend.execution_engine import ExecutionEngine
# from .backend.debug_logger import DebugLogger

6
src/backend/__init__.py Normal file
View File

@ -0,0 +1,6 @@
# from .file_manager import FileManager
# from .chat_manager import ChatManager
# from .system_prompter import SystemPrompter
# from .search_manager import SearchManager
# from .execution_engine import ExecutionEngine
# from .debug_logger import DebugLogger

View File

View File

View File

View File

View File

View File

0
src/main.py Normal file
View File

6
src/ui/__init__.py Normal file
View File

@ -0,0 +1,6 @@
# # src/ui/__init__.py
# from .navigation import FileNavigation
# from .editor import CodeEditor
# from .chat import ChatInterface
# from .output import OutputDisplay

0
src/ui/chat.py Normal file
View File

0
src/ui/editor.py Normal file
View File

0
src/ui/navigation.py Normal file
View File

0
src/ui/output.py Normal file
View File