Skip to content

Commit

Permalink
Merge pull request #7 from KakaoTech-Hackathon-Dream/feature-model-up…
Browse files Browse the repository at this point in the history
…grade

feat: 모델 교체
  • Loading branch information
IlMinCho authored Sep 6, 2024
2 parents c90b7d0 + 5437ef7 commit 7d6a2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/llm_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# OpenAI API 설정
openai_api_key = os.getenv("OPENAI_API_KEY")
llm = ChatOpenAI(api_key=openai_api_key, model="gpt-3.5-turbo")
llm = ChatOpenAI(api_key=openai_api_key, model="gpt-4o")

# 1. 초기 단계 프롬프트 템플릿 (기)
initial_template = PromptTemplate.from_template("""
Expand Down

0 comments on commit 7d6a2f2

Please sign in to comment.