스프링부트 프로젝트에서 ChatGPT API 를 사용할 수 있도록 설정 정보를 입력해 봅시다 ~
[ SpringBoot 프로젝트 설정하기 ]
0. ChatGPT API Key 발급
1. Build.gradle
...
dependencies {
...
// chatgpt
implementation 'io.github.flashvayne:chatgpt-spring-boot-starter:1.0.4'
}
...
2. application.yml
...
chatgpt:
api-key: # 발급받은 api key
🤖 준비 완료 !
'Spring > [P] AI 챗봇 기반 맞춤형 레시피 서비스' 카테고리의 다른 글
[SpringBoot/Pagination] Review 10개씩 조회하기 (0) | 2024.02.29 |
---|---|
[SpringBoot/ChatGPT] ChatGPT API (5) DB 기반 질문 요청 (2) | 2024.02.28 |
[SpringBoot/ChatGPT] ChatGPT API (4) 일반 대화 - 메세지 반환 (0) | 2024.02.27 |
[SpringBoot/ChatGPT] ChatGPT API (3) 일반 대화 - 메세지 전송 (0) | 2024.02.26 |
[SpringBoot/ChatGPT] ChatGPT API (1) API Key 발급 (0) | 2024.02.21 |