-
9추천
-
7추천이미지 링크둘 다 써봤는데, Open-webui는 Ollama 연동이 편하고 LibreChat는 멀티모델 관리가 좋았습니다. RAG 기능은 LibreChat가 좀 더 성숙한 느낌? 여러분 선택은?
-
8추천
-
10추천이미지 링크로컬 RAG 서비스 최소 구성 템플릿을 만들어봤습니다. docker compose 하나로 Ollama + FastAPI + ChromaDB가 뜹니다. 피드백 환영해요.
-
6추천
-
15추천폐쇄망용 완전 오프라인 RAG. Ollama만으로 동작, 임베딩은 bge-m3. 피드백 환영합니다.
-
7추천링크상업적으로 사용할 수 있는 오픈 LLM의 업데이트된 목록입니다. 클라이언트 프로젝트용 모델을 고를 때 유용합니다.
-
7추천네임스페이스 API가 안정화됐고 성능도 올라갔다고 합니다. 마이그레이션 가이드 공유합니다.
-
8추천비용/지연/프롬프트 버전까지 한 번에 보이니까 디버깅 시간이 반으로 줄었습니다. 무료 티어로 충분해요.
-
6추천
-
6추천We went LibreChat for multi-user + RBAC. Open-webui has nicer UX though. Your pick?
-
5추천
-
7추천Ran a quick benchmark. pgvector with HNSW was 80% the speed at 10% the cost. Details in thread.
-
7추천Feed it a CSV export, it finds anomalies and writes a Korean explanation via an LLM. Useful for MSP folks.
-
6추천드래그앤드롭으로 LLM + 검색 + 슬랙 연동까지. 개발자도 가끔은 로우코드가 편하네요.
-
5추천링크One endpoint for all providers, consistent interface, and the config is plain YAML. We swapped out three vendor SDKs in an afternoon. If you're multi-provider, just use it.
-
8추천듀얼 3090으로 70B 돌리려다 이틀 삽질. 결국은 OLLAMA_NUM_GPU + 스플릿 모드 조합으로 해결. 정리해봤습니다.
-
5추천I packaged my go-to RAG setup into a template. Docker compose up and you have a working API in 2 minutes.
-
5추천지금은 Git으로 관리하는데, 버전별 A/B 테스트가 필요해졌습니다. 전용 도구 추천 부탁해요.
-
6추천CSV of prompts → JSONL of responses + scores. 100 lines of Go. Maybe useful for your eval pipeline.
-
5추천Gradio가 멀티모달 채팅 컴포넌트를 갖추게 되었습니다. Streamlit이 따라잡고 있죠. 내부 데모용으로는 어떤 것이 더 나을까요?
-
6추천링크We were merging PRs blind. Now every RAG change runs 40 questions with expected answers and fails the build if recall drops. It's crude but it caught two regressions last week. Sometimes the simple stuff wins.
-
7추천링크TypeScript 50줄짜리 코드가 우리 검색 API를 가리키고, 이제 모두가 에디터에서 문서를 조회한다. 바보 같지만 우리 일하는 방식을 바꿨다. 프로토콜은 투박하지만 통합으로 얻은 이점은 확실하다.
-
5추천링크LangSmith is smoother but the per-seat pricing hurt us. Langfuse self-hosted costs us one small VM. Missing a few features but the trace UI is good enough and the data stays on our infra. For EU clients that matters.
-
4추천링크Been running a 70B Q4 on one 80GB card for a side project. Key tricks: prefix caching on, max_num_seqs tuned, and a tiny health check for the load balancer. Sharing my config because I wish someone had shared theirs.
-
6추천링크동일한 1M 문서 데이터셋으로 세 가지를 모두 실행했습니다. Qdrant는 쿼리 지연 시간에서 이겼고, pgvector는 운영 단순성에서 이겼습니다(이미 Postgres를 쓰고 있음). Milvus는 로딩이 가장 빨랐지만 클러스터 구성이 그 자체로 하나의 프로젝트입니다. 전체 수치는 게시물에 있습니다.
-
3추천We needed retries, state, and human-in-the-loop checkpoints. n8n got us to demo in a day, Temporal was a week of learning but the durability is worth it. For anything customer-facing we now default to Temporal.
-
5추천링크게이트웨이를 구매하는 대신 직접 작성했다. 프로바이더 간 라운드로빈, 정확한 프롬프트에 대한 인메모리 캐시, 그리고 서킷 브레이커를 구현했다. 화려하지는 않지만 API 비용을 35% 절감했고 모든 것을 통제할 수 있다.
-
4추천링크우리는 프롬프트를 git에 복사해서 붙여넣기 하고 있었는데 정말 혼란스러웠습니다. 이 도구는 프롬프트를 버전 관리되는 파일로 저장하고, diff를 비교하며, 어떤 프로바이더로든 푸시할 수 있습니다. 아직 초기 단계이지만 4명으로 구성된 우리 팀에게 유용하게 쓰이고 있습니다.
-
3추천Every prompt change gets a shadow run: same input, old and new config, human review on a sample. Catches regressions the evals miss. Takes one extra table and a cron job. Best $0 investment we've made this quarter.