[PR #3433] [CLOSED] Insight 23 database provider 설정 변경 및 확인 #4282

Closed
opened 2026-02-22 18:35:31 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3433
Author: @jaywon-song
Created: 3/10/2025
Status: Closed

Base: masterHead: INSIGHT-23-database-provider-설정-변경-및-확인


📝 Commits (10+)

  • 1f5ea20 Update .gitmodules
  • 1958492 Update .gitmodules
  • be2e7e1 INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment ocr js 포팅 완료
  • f8c3389 INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment Dockerfile에 누락된 부분 추가.
  • 4b7425a INSIGHT-10 OCR 처리 병렬화 #comment 최대 5개의 OCR 요청을 동시에 처리하도록 변경.
  • 6ae86c9 INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment http timeout 시간 .env 파일에서 설정 가능하도록 변경.
  • 1b44a1a mvp용 docker-compose yml 파일 업로드
  • ccca175 INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment .env 의 REQUEST_TIMEOUT 값이 int 로 처리되도록 수정.
  • 8658e52 INSIGHT-14 OCR 결과 json 파일 이름에 한글 안들어가는 문제 #comment slugify에 remove 옵션 추가.
  • 90cc7a0 INSIGHT-15 Text Layer가 없는 페이지만 OCR 진행 #comment Text Layer가 없는 PDF 페이지만 OCR 진행

📊 Changes

77 files changed (+979 additions, -371 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 .gitmodules (+2 -2)
📝 collector/package.json (+4 -1)
📝 collector/processSingleFile/convert/asPDF/PDFLoader/index.js (+103 -40)
collector/processSingleFile/convert/asPDF/PDFLoader/pdf-ocr-loader.js (+333 -0)
📝 collector/processSingleFile/convert/asPDF/index.js (+3 -1)
📝 docker/.env.example (+6 -0)
📝 docker/Dockerfile (+3 -1)
📝 docker/docker-compose.yml (+27 -2)
docker/docker-compose_mvp.yml (+24 -0)
docker/pg_hba.conf (+2 -0)
docker/postgresql.conf (+1 -0)
📝 frontend/src/components/DefaultChat/index.jsx (+95 -96)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx (+1 -1)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx (+3 -3)
📝 frontend/src/components/SettingsSidebar/index.jsx (+8 -8)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx (+1 -1)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx (+2 -2)
📝 frontend/src/components/TextToSpeech/PiperTTSOptions/index.jsx (+1 -1)
📝 frontend/src/components/UserIcon/workspace.svg (+84 -20)

...and 57 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #xxx

What is in this change?

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/3433 **Author:** [@jaywon-song](https://github.com/jaywon-song) **Created:** 3/10/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `INSIGHT-23-database-provider-설정-변경-및-확인` --- ### 📝 Commits (10+) - [`1f5ea20`](https://github.com/Mintplex-Labs/anything-llm/commit/1f5ea20fbc102bfd24e2f72b3917dd3388c74521) Update .gitmodules - [`1958492`](https://github.com/Mintplex-Labs/anything-llm/commit/19584923f268bc318fa96baef9b6a34bbc1039a6) Update .gitmodules - [`be2e7e1`](https://github.com/Mintplex-Labs/anything-llm/commit/be2e7e13dc053c79e91de4ab03192182197e9f40) INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment ocr js 포팅 완료 - [`f8c3389`](https://github.com/Mintplex-Labs/anything-llm/commit/f8c3389dfff66ed861c1335c46a35b93a4070084) INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment Dockerfile에 누락된 부분 추가. - [`4b7425a`](https://github.com/Mintplex-Labs/anything-llm/commit/4b7425a3729cb67bb09455300934e3772d10207c) INSIGHT-10 OCR 처리 병렬화 #comment 최대 5개의 OCR 요청을 동시에 처리하도록 변경. - [`6ae86c9`](https://github.com/Mintplex-Labs/anything-llm/commit/6ae86c9148670717a63164fda46f099aa6d45617) INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment http timeout 시간 .env 파일에서 설정 가능하도록 변경. - [`1b44a1a`](https://github.com/Mintplex-Labs/anything-llm/commit/1b44a1a7305e94300fb05a8fad284f84de6205d1) mvp용 docker-compose yml 파일 업로드 - [`ccca175`](https://github.com/Mintplex-Labs/anything-llm/commit/ccca1753130764ec1f0b68233a16c92f53d8ecde) INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment .env 의 REQUEST_TIMEOUT 값이 int 로 처리되도록 수정. - [`8658e52`](https://github.com/Mintplex-Labs/anything-llm/commit/8658e5282fd71516ac23a89d960d1f7807d939a4) INSIGHT-14 OCR 결과 json 파일 이름에 한글 안들어가는 문제 #comment slugify에 remove 옵션 추가. - [`90cc7a0`](https://github.com/Mintplex-Labs/anything-llm/commit/90cc7a0fb9f2fc7c52daf424b5dc3f5ce517afc2) INSIGHT-15 Text Layer가 없는 페이지만 OCR 진행 #comment Text Layer가 없는 PDF 페이지만 OCR 진행 ### 📊 Changes **77 files changed** (+979 additions, -371 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `.gitmodules` (+2 -2) 📝 `collector/package.json` (+4 -1) 📝 `collector/processSingleFile/convert/asPDF/PDFLoader/index.js` (+103 -40) ➕ `collector/processSingleFile/convert/asPDF/PDFLoader/pdf-ocr-loader.js` (+333 -0) 📝 `collector/processSingleFile/convert/asPDF/index.js` (+3 -1) 📝 `docker/.env.example` (+6 -0) 📝 `docker/Dockerfile` (+3 -1) 📝 `docker/docker-compose.yml` (+27 -2) ➕ `docker/docker-compose_mvp.yml` (+24 -0) ➕ `docker/pg_hba.conf` (+2 -0) ➕ `docker/postgresql.conf` (+1 -0) 📝 `frontend/src/components/DefaultChat/index.jsx` (+95 -96) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx` (+1 -1) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx` (+3 -3) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+8 -8) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx` (+1 -1) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx` (+2 -2) 📝 `frontend/src/components/TextToSpeech/PiperTTSOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/UserIcon/workspace.svg` (+84 -20) _...and 57 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:31 -05:00
yindo closed this issue 2026-02-22 18:35:31 -05:00
yindo changed title from [PR #3433] Insight 23 database provider 설정 변경 및 확인 to [PR #3433] [CLOSED] Insight 23 database provider 설정 변경 및 확인 2026-06-05 15:17:47 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4282