Skip to content

Commit aac337a

Browse files
feat: 상품 설명이 표시되지 않는 오류 발생
1 parent c7ed128 commit aac337a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

thefirsttake/src/main/java/com/thefirsttake/app/chat/service/NewLLMStreamService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class NewLLMStreamService {
3030

3131
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
3232

33-
@Value("${llm.server.new-stream-url:https://the-first-take.com/langgraph/llm_search/stream}")
33+
@Value("${llm.server.new-stream-url:https://the-second-take.com/langgraph/llm_search/stream}")
3434
private String newLlmStreamUrl;
3535

3636
private final WebClient.Builder webClientBuilder;
@@ -402,7 +402,7 @@ private com.thefirsttake.app.chat.dto.response.ProductInfo searchProductById(Str
402402
log.info("상품 검색 시작: productId={}", productId);
403403

404404
// ProductSearchService를 사용하여 상품 검색
405-
String searchUrl = "https://the-first-take.com/search/" + productId;
405+
String searchUrl = "https://the-second-take.com/search/" + productId;
406406
@SuppressWarnings("unchecked")
407407
Map<String, Object> response = restTemplate.getForObject(searchUrl, Map.class);
408408

0 commit comments

Comments
 (0)