Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ deepwiki/
│ ├── api.py # Implementación FastAPI
│ ├── rag.py # Generación Aumentada por Recuperación
│ ├── data_pipeline.py # Utilidades de procesamiento de datos
│ └── requirements.txt # Dependencias Python
│ ├── pyproject.toml # Dependencias Python (Poetry)
│ └── poetry.lock # Versiones bloqueadas de dependencias Python
├── src/ # App frontend Next.js
│ ├── app/ # Directorio app de Next.js
Expand Down
3 changes: 2 additions & 1 deletion README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ deepwiki/
│ ├── api.py # Implémentation FastAPI
│ ├── rag.py # Génération Augmentée par Récupération (RAG)
│ ├── data_pipeline.py # Utilitaires de traitement des données
│ └── requirements.txt # Dépendances Python
│ ├── pyproject.toml # Dépendances Python (Poetry)
│ └── poetry.lock # Versions verrouillées des dépendances Python
├── src/ # Application Frontend Next.js
│ ├── app/ # Répertoire de l'application Next.js
Expand Down
3 changes: 2 additions & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ deepwiki/
│ ├── api.py # FastAPI実装
│ ├── rag.py # 検索拡張生成
│ ├── data_pipeline.py # データ処理ユーティリティ
│ └── requirements.txt # Python依存関係
│ ├── pyproject.toml # Python依存関係 (Poetry)
│ └── poetry.lock # 固定されたPython依存関係バージョン
├── src/ # フロントエンドNext.jsアプリ
│ ├── app/ # Next.jsアプリディレクトリ
Expand Down
3 changes: 2 additions & 1 deletion README.kr.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ deepwiki/
│ ├── api.py # FastAPI 구현
│ ├── rag.py # Retrieval Augmented Generation
│ ├── data_pipeline.py # 데이터 처리 유틸리티
│ └── requirements.txt # Python 의존성
│ ├── pyproject.toml # Python 의존성 (Poetry)
│ └── poetry.lock # 잠긴 Python 의존성 버전
├── src/ # 프론트엔드 Next.js 앱
│ ├── app/ # Next.js 앱 디렉토리
Expand Down
3 changes: 2 additions & 1 deletion README.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ deepwiki/
│ ├── api.py # Implementação FastAPI
│ ├── rag.py # Retrieval Augmented Generation
│ ├── data_pipeline.py # Utilitários de processamento de dados
│ └── requirements.txt # Dependências Python
│ ├── pyproject.toml # Dependências Python (Poetry)
│ └── poetry.lock # Versões fixas de dependências Python
├── src/ # Aplicativo Next.js frontend
│ ├── app/ # Diretório do aplicativo Next.js
Expand Down
3 changes: 2 additions & 1 deletion README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ deepwiki/
│ ├── api.py # Реализация через FastAPI
│ ├── rag.py # RAG: генерация с дополнением
│ ├── data_pipeline.py # Утилиты обработки данных
│ └── requirements.txt # Зависимости Python
│ ├── pyproject.toml # Зависимости Python (Poetry)
│ └── poetry.lock # Зафиксированные версии зависимостей Python
├── src/ # Клиентское приложение на Next.js
│ ├── app/ # Каталог приложения Next.js
Expand Down
3 changes: 2 additions & 1 deletion README.vi.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ deepwiki/
│ ├── api.py # FastAPI
│ ├── rag.py # Retrieval Augmented Generation (RAG)
│ ├── data_pipeline.py # Data processing utilities
│ └── requirements.txt # Python dependencies
│ ├── pyproject.toml # Python dependencies (Poetry)
│ └── poetry.lock # Locked Python dependency versions
├── src/ # Frontend Next.js app
│ ├── app/ # Next.js app directory
Expand Down
3 changes: 2 additions & 1 deletion README.zh-tw.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ deepwiki/
│ ├── api.py # FastAPI 實作
│ ├── rag.py # 檢索增強產生
│ ├── data_pipeline.py # 資料處理工具
│ └── requirements.txt # Python 相依性
│ ├── pyproject.toml # Python 相依性 (Poetry)
│ └── poetry.lock # 已鎖定的 Python 相依性版本
├── src/ # 前端 Next.js 應用
│ ├── app/ # Next.js 應用目錄
Expand Down
3 changes: 2 additions & 1 deletion README.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ deepwiki/
│ ├── api.py # FastAPI实现
│ ├── rag.py # 检索增强生成
│ ├── data_pipeline.py # 数据处理工具
│ └── requirements.txt # Python依赖
│ ├── pyproject.toml # Python依赖 (Poetry)
│ └── poetry.lock # 已锁定的 Python 依赖版本
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The spacing between English and Chinese characters is inconsistent with line 161 and the rest of the file (e.g., line 158). To maintain consistency with the existing style, the spaces around "Python" should be removed.

Suggested change
│ └── poetry.lock # 已锁定的 Python 依赖版本
│ └── poetry.lock # 已锁定的Python依赖版本

├── src/ # 前端Next.js应用
│ ├── app/ # Next.js应用目录
Expand Down