본문 바로가기

분류 전체보기209

[SK브로드밴드] 🌐 시놀로지 NAS 2중 포트포워딩 가이드 GW-ME6110 공유기와 H633G 모뎀의 포트포워딩 설정 순서 및 상세 가이드입니다. 1. 네트워크 구성도 외부 인터넷 STEP 2. SKB 기가 와이파이 모뎀 H633G (최상단) 관리 주소: 192.168.55.1 설정: 192.168.55.101 : 5000~5006 .. 2026. 2. 23.
[네트워크] 포트에 사용되는 프로세스 확인 - powershell 에서 실행 netstat -ano | findstr ":포트번호" Get-Process -Id 2025. 12. 31.
[아우터월드] 공허에서 온 무기 https://www.youtube.com/watch?v=K30fERyvWuY&t=29s 2025. 11. 6.
[Tidal] PC 타이달 음원 저장 https://github.com/exislow/tidal-dl-ng GitHub - exislow/tidal-dl-ng: Multithreaded TIDAL Media Downloader Next Generation! Up to HiRes Lossless / TIDAL MAX 24-bit, 192Multithreaded TIDAL Media Downloader Next Generation! Up to HiRes Lossless / TIDAL MAX 24-bit, 192 kHz. - exislow/tidal-dl-nggithub.comhttps://github.com/exislow/tidal-dl-ng/releases Releases · exislow/tidal-dl-ngMultithreaded TIDA.. 2025. 10. 21.
[AI] LangGraph의 tools_condition 📌 개념 설명tools_condition은 LangGraph에서 에이전트 워크플로우의 라우팅을 자동으로 처리하는 사전 구축된 조건 함수입니다.주요 역할:LLM이 도구(tool)를 호출해야 하는지 판단도구 호출이 필요하면 → tools 노드로 라우팅도구 호출이 없으면 → 종료(END)로 라우팅tool_calls가 있는지 자동으로 확인하여 분기 처리🔧 기본 사용법1. 간단한 예제 pythonfrom langgraph.graph import StateGraph, MessagesState, START, ENDfrom langgraph.prebuilt import tools_condition, ToolNodefrom langchain_anthropic import ChatAnthropicfrom langch.. 2025. 10. 13.
[AI] ChatPromptTemplate.from_messages ChatPromptTemplate.from_messages(...)가 받는 메시지 포맷(튜플/템플릿/메시지 객체), template_format(f-string/mustache/jinja2), MessagesPlaceholder 사용법은 문서와 일치합니다. 1) 기본형: 시스템+휴먼 (f-string) from langchain_core.prompts import ( ChatPromptTemplate, SystemMessagePromptTemplate, HumanMessagePromptTemplate,)SYSTEM = ( "너는 AI 서비스를 개발하는 파이썬 시니어 엔지니어다. " "답변은 한국어, 정확하고 간결하게. 추정은 '추정'이라고 표시해.")prompt = ChatPr.. 2025. 10. 13.