Skip to content

Commit

Permalink
Feat : update ai server url
Browse files Browse the repository at this point in the history
  • Loading branch information
D-w-nJ committed Sep 27, 2023
1 parent 17d0187 commit 7a86877
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/m9d/sroom/gpt/service/GPTService.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
@RequiredArgsConstructor
public class GPTService {

@Value("${gpt.request-url}")
@Value("${ai.request-url}")
private String gptRequestUrl;

@Value("${gpt.result-url}")
@Value("${ai.result-url}")
private String gptResultUrl;

private final WebClient webClient;
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ spring:

youtube:
base-url: https://www.googleapis.com/youtube/v3
gpt:
request-url : http://127.0.0.1:8000
result-url: http://127.0.0.1:8000/results
ai:
request-url : http://43.200.123.116:8000
result-url: http://43.200.123.116:8000/results

aws:
kms:
Expand Down

0 comments on commit 7a86877

Please sign in to comment.