AI커뮤니티

#LLM

인기 태그 #rag#RAG#opensource#agents#llm#에이전트#임베딩#비용#GPU#오픈소스#커뮤니티#serving
  1. 12
    추천
    이미지 링크
    8B~27B 모델을 서빙하려고 합니다. throughput이 중요하면 vLLM, VRAM이 빠듯하면 llama.cpp라는 얘기가 있는데 실제 운영하시는 분들 경험 공유 부탁드려요.
    질문답변 @stronguser · 11시간 전 · 댓글 1 #서빙#vLLM#llama.cpp
  2. 7
    추천
    링크
    상업적으로 사용할 수 있는 오픈 LLM의 업데이트된 목록입니다. 클라이언트 프로젝트용 모델을 고를 때 유용합니다.
    도구/프로젝트 @sean · 23시간 전 · 댓글 1 #opensource#llm#list
  3. 9
    추천
    노트북에서 돌리는 Ollama는 간단한 테스트용으로는 훌륭하지만, 안정성이 필요해지면 호스팅 API가 지연 시간과 업타임에서 더 낫다. 지금까지의 내 경험상 그렇다는 얘기다.
    뉴스 @alexus · 1일 전 · 댓글 2 #llm#api#ollama
  4. 7
    추천
    가성비 미쳤습니다. 4bit로 12GB 램 노트북에서 돌아간다고 하니 로컬 실험용으로 딱이네요.
    뉴스 @mlpark · 1일 전 · 댓글 1 #Gemma#양자화#로컬LLM
  5. 11
    추천
    L4 한 장으로 Qwen2.5-7B 서빙. 처리량 만족스럽습니다. 양자화 없이도 충분하네요.
    자랑/공유 @mlpark · 1일 전 · 댓글 2 #vLLM#서빙#GPU
  6. 7
    추천
    동일 7B 모델로 비교했는데 p50은 비슷하고 p99는 TRT-LLM이 더 안정적이었습니다. 수치 표로 정리했어요.
    자랑/공유 @gptkim · 1일 전 · 댓글 1 #vLLM#TensorRT#벤치마크
  7. 7
    추천
    Prefill pipelining finally landed. Our 128k-context serving costs should drop meaningfully.
    뉴스 @kai · 1일 전 · 댓글 1 #vllm#serving#performance
  8. 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.
    도구/프로젝트 @Anna Nowak · 1일 전 · 댓글 0 #litellm#proxy#multivendor
  9. 8
    추천
    이미지 링크
    리더보드가 뒤바뀐 채로 아침을 맞았다. 그들의 새 릴리스가 MMLU-pro에서 이전 SOTA를 약 3포인트 차이로 이겼는데, 블로그 포스트는 사실상 한 문단뿐이다. 일부러 실력을 숨긴 건지, 아니면 의도적으로 요란한 발표 없이 출시한 건지. 어느 쪽이든 가격 페이지는 여전히 예전 그대로인데, 그게 진짜 핵심이다.
    뉴스 @Jennifer Chen · 1일 전 · 댓글 0 #openai#benchmarks#llm
  10. 5
    추천
    vLLM vs TGI vs llama.cpp server. For a small team serving one 8B model, what's the least ops burden?
    질문답변 @alexus · 1일 전 · 댓글 1 #self-host#serving#llm
  11. 7
    추천
    이미지 링크
    Downloaded the 27B variant last night. Quantized to Q4 it fits in 16GB RAM and generates at a very usable speed. Not Claude-level reasoning, but for a local model it's a big step. Google is winning the 'open weights you can actually run' game right now.
    뉴스 @Marcus Obediah · 2일 전 · 댓글 0 #google#open-weights#local-llm
  12. 8
    추천
    로컬에서 돌릴 수 있는 새 오픈웨이트 모델 소식. 7B인데 성능이 무섭다.
    뉴스 @kai · 2일 전 · 댓글 1 #LLM#오픈소스
  13. 4
    추천
    System prompt first, stable ordering, minimal drift. Any other tricks to keep cache hits high?
    질문답변 @polyglot · 2일 전 · 댓글 1 #prompt#cache#llm
  14. 4
    추천
    긴 컨텍스트는 비싸고, 제 테스트상 어차피 모델은 중간 내용을 잊어버립니다. RAG 루프로 청킹하면 작동은 하지만 뭔가 포기하는 느낌이에요. 여러분은 그냥 큰 컨텍스트 비용을 지불하시나요, 아니면 실제로 이를 우회하도록 엔지니어링하시나요?
    질문답변 @David Kim · 2일 전 · 댓글 0 #context#rag#llm
  15. 5
    추천
    Building evals feels like a second product. We tried LLM-as-judge with a strong model and it's decent but biased toward long answers. Anyone using lightweight checks + sampling? What's your minimal viable eval?
    질문답변 @Raj Patel · 4일 전 · 댓글 0 #evals#llm-judge#testing
  16. 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.
    도구/프로젝트 @Jennifer Chen · 5일 전 · 댓글 0 #vllm#serving#docker
  17. 2
    추천
    We're on vLLM with continuous batching and it's fine, but TGI has better tool-calling support out of the box. Am I missing something? Also considering SGLang. Real-world throughput numbers welcome.
    질문답변 @Emily Watson · 3일 전 · 댓글 0 #vllm#tgi#serving
  18. 7
    추천
    12B model on the family PC, a simple web UI. It explains math problems step by step instead of just giving answers. No accounts, no data leaving the house, and no monthly subscription. The kids actually use it.
    자랑/공유 @Raj Patel · 8일 전 · 댓글 0 #local-llm#education#family
  19. 5
    추천
    링크
    게이트웨이를 구매하는 대신 직접 작성했다. 프로바이더 간 라운드로빈, 정확한 프롬프트에 대한 인메모리 캐시, 그리고 서킷 브레이커를 구현했다. 화려하지는 않지만 API 비용을 35% 절감했고 모든 것을 통제할 수 있다.
    도구/프로젝트 @Raj Patel · 9일 전 · 댓글 0 #gateway#go#llm
  20. 5
    추천
    It categorizes spending, flags weird charges, and answers questions like 'how much did I spend on coffee in March'. Accuracy is 90%+ on categories. Caveat: you have to trust it with your data, so it runs fully local. Worth it for the anxiety reduction alone.
    자랑/공유 @Tom Hall · 10일 전 · 댓글 0 #finance#local-llm#privacy
  21. 3
    추천
    I ran Llama 4.5 8B Q4 on my M3 Pro and it's... fine? Good enough for drafts and summarization, not great for anything complex. Battery drains fast though. For $0 in API costs, the tradeoff is getting more tempting.
    자유 @Sofia Alvarez · 9일 전 · 댓글 0 #local-llm#mac#mlx