Skip to content

Commit

Permalink
fix : claude 3.5 sonnet 모델 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboysj committed Nov 26, 2024
1 parent 39db27d commit e8dfd9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class ClaudeAPIService {
// Claude API를 호출
private Mono<String> callClaudeAPI(String systemPrompt, String conversationContext, int maxTokens) {
Map<String, Object> requestBody = new HashMap<>();
requestBody.put("model", "claude-3-5-sonnet-20240620");
requestBody.put("model", "claude-3-5-sonnet-20241022");
requestBody.put("max_tokens", maxTokens);

// 시스템 메시지를 위한 맵 생성
Expand Down

0 comments on commit e8dfd9e

Please sign in to comment.