전체 글(321)
-
PyInstaller 패키징 도중 Unhandled exception in script
Unhandled exception in scriptTraceback (most recent call last): File "desktop_app.py", line 9, in from PySide6.QtCore import Qt, QThread, QTimer, SignalImportError: DLL load failed while importing QtCore: 지정된 프로시저를 찾을 수 없습니다. PyInstaller 로 데스크탑 앱 패키징 도중 발생한 오류. 환경PySide6 6.11.2PyInstaller로 단일 EXE 패키징 원인EXE 내부 QtCore 및 관련 런타임 DLL 버전 충돌 'DLL을 찾을 수 없음”이 아니라 “지정된 프로시저를 찾을 수 없음”이므로, DLL 파일은 발견했..
2026.08.27 -
Awesome MCP Korea 소개 - 한국 데이터 생태계 특화 MCP
https://github.com/darjeeling/awesome-mcp-korea GitHub - darjeeling/awesome-mcp-korea: A curated list of MCP servers for the Korean market, including legal, commerce, public daA curated list of MCP servers for the Korean market, including legal, commerce, public data, and local services integrations. - darjeeling/awesome-mcp-koreagithub.com 한국은 정말 데이터의 공개가 정말정말 잘 되어있다. 다만 그것을 활용이 쉽냐? 라고 한다면 개인적으..
2026.08.20 -
Chatgpt login issue
https://status.openai.com/ OpenAI StatusLatest service status for OpenAIstatus.openai.com 현시각 코덱스와 chatgpt 사이트에서 로그인이 제대로 되지 않는 현상.비즈니스 계정은 로그인은 되는데, codex에 접근 할 수 없었음.
2026.08.20 -
모델에 따른 추론 최적화와 토큰 차이
o4-mini 같은 경우는 effort 에 따라서 추론을 사용하는데,(토큰의 차이를 확인 116, 241) gpt-5.6-luna 같은 경우는 effort가 low 나 high 차이에 따라 차이가 없다. - 추론을 아예 안했음. 추론을 쓸까 말까? 에 대한 최적화가 잘 되어있음.
2026.08.19 -
LLM 출력의 비일관성 문제 (스키마 불일치)
for i in range(3): r = client.chat.completions.create( model=API_MODEL, messages=[ { "role": "user", # 프롬프트 안에 'JSON' 단어가 반드시 포함되어야 합니다. "content": f"이 리뷰를 분석해서 JSON 형식으로 응답해줘: {review}" } ], response_format={"type": "json_object"}, max_completion_tokens=300, ) data = json.loads(r.choic..
2026.08.18 -
[Unity] TMP Importer 모달창
MCP 로 작업중에 처음 보는 모달창 등장 TMP Importer TMP Essentials This appears to be the first time you access TextMesh Pro, as such we need to add resources to your project that are essential for using TextMesh Pro. These new resources will be placed at the root of your project in the "TextMesh Pro" folder. [ Import TMP Essentials ] TMP Examples & Extras The Examples & Extras package contains addition resou..
2026.08.06