File size: 497 Bytes
8c4af83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Создание основной структуры директорий
mkdir -p api utils tests chat_history vector_store
# Создание файлов Python
touch api/__init__.py
touch utils/__init__.py
touch tests/__init__.py
touch tests/test_app.py
# Перемещение существующих файлов
mv chat_analysis.py utils/
mv analysis.py api/
# Создание .gitkeep для пустых директорий
touch chat_history/.gitkeep
touch vector_store/.gitkeep |