Update handlers/common.py

This commit is contained in:
2026-03-19 12:52:45 +09:00
parent d547bcf50d
commit 609740baff

View File

@@ -2,7 +2,8 @@ from dotenv import load_dotenv
load_dotenv()
# -*- coding: utf-8 -*-
"""
공통 핸들러 유틸리티
공통 핸들러 함수
- Claude API 호출
- JSON/HTML 추출
"""
@@ -12,7 +13,7 @@ import re
import json
import anthropic
# Claude API 클라이언트
# Claude API 클라이언트 설정
client = anthropic.Anthropic(
api_key=os.environ.get("ANTHROPIC_API_KEY")
)
@@ -36,10 +37,10 @@ def extract_json(text: str) -> dict:
text = text.split('```json')[1].split('```')[0]
elif '```' in text:
text = text.split('```')[1].split('```')[0]
text = text.strip()
# JSON 데이터 파싱
# JSON 파싱 시도
try:
return json.loads(text)
except json.JSONDecodeError:
@@ -62,15 +63,16 @@ def extract_html(text: str) -> str:
parts = text.split('```')
if len(parts) >= 2:
text = parts[1]
text = text.strip()
# <!DOCTYPE 나 <html로 시작하는 부분만 추출
if '<html' in text.lower():
# <!DOCTYPE 나 <html로 시작하지 않는 경우 확인
if not text.startswith('<!DOCTYPE') and not text.startswith('<html'):
# HTML 부분만 추출
match = re.search(r'(<!DOCTYPE html[\s\S]*</html>)', text, re.IGNORECASE)
if match:
text = match.group(1)
return text
@@ -81,4 +83,4 @@ def load_prompt(prompts_dir: str, filename: str) -> str:
with open(prompt_path, 'r', encoding='utf-8') as f:
return f.read()
except FileNotFoundError:
return None
return None