FIX(app): fix typo

- Correct typo in source code
- Fix spelling error
This commit is contained in:
2025-12-24 20:40:00 +09:00
parent 191f68b2e9
commit beee47c6ec
2 changed files with 5 additions and 5 deletions

View File

@@ -14,5 +14,5 @@ commonLabels:
# 이미지 태그 설정 (ArgoCD Image Updater가 자동으로 업데이트) # 이미지 태그 설정 (ArgoCD Image Updater가 자동으로 업데이트)
images: images:
- name: gitea0213.kro.kr/bluemayne/mas - name: gitea0213.kro.kr/bluemayne/mas
newTag: main-sha-a1213e0d7ffd647b79ecd651f515334760824ab7 newTag: main-sha-83c852831c0f4ec6a4ee69f7c99d4d1277271975

View File

@@ -1,5 +1,5 @@
""" """
Research Agent (Groq) Research Agent (Claude)
정보 수집 및 문서/코드베이스 검색 정보 수집 및 문서/코드베이스 검색
JSON 기반 명령어 생성 방식으로 재작성 JSON 기반 명령어 생성 방식으로 재작성
""" """
@@ -12,7 +12,7 @@ import re
# Claude 4.5 모델 초기화 # Claude 4.5 모델 초기화
claude_prompt_gen = ChatAnthropic( claude_research = ChatAnthropic(
model="claude-sonnet-4-20250514", model="claude-sonnet-4-20250514",
api_key=os.getenv("ANTHROPIC_API_KEY"), api_key=os.getenv("ANTHROPIC_API_KEY"),
temperature=0.3 temperature=0.3
@@ -114,8 +114,8 @@ def research_node(state: AgentState) -> AgentState:
print(f"Research Agent - Iteration {iteration}/{max_iterations}") print(f"Research Agent - Iteration {iteration}/{max_iterations}")
print(f"{'='*80}") print(f"{'='*80}")
# Groq 호출 # Claude 호출
response = groq_research.invoke(conversation) response = claude_research.invoke(conversation)
response_text = response.content response_text = response.content
print(f"Response: {response_text[:500]}...") print(f"Response: {response_text[:500]}...")