Spring/[P] AI 챗봇 기반 맞춤형 레시피 서비스

[SpringBoot/ChatGPT] ChatGPT API (2) 프로젝트 설정

alsruds 2024. 2. 22. 23:46

 

 

스프링부트 프로젝트에서 ChatGPT API 를 사용할 수 있도록 설정 정보를 입력해 봅시다 ~

 


 

[ SpringBoot 프로젝트 설정하기 ]

 

0. ChatGPT API Key 발급

2024.02.21 - [Spring/[Project] AI 챗봇 기반 맞춤형 레시피 서비스] - [SpringBoot/ChatGPT] ChatGPT API (1) API Key 발급

 

[SpringBoot/ChatGPT] ChatGPT API (1) API Key 발급

ChatGPT API 를 사용하기 위해 API Key 를 발급받아 봅시다 ~ [ API Key 발급받기 ] 🏠 https://platform.openai.com/api-keys 1. 새로운 키 생성 2. 키 이름 작성 3. 생성된 키 복사 ✔️ 생성된 secret key 는 다시 열람

alsrudalsrudalsrud.tistory.com

 

1. Build.gradle

...

dependencies {
	...

	// chatgpt
	implementation 'io.github.flashvayne:chatgpt-spring-boot-starter:1.0.4'
}

...

 

2. application.yml

...

chatgpt:
  api-key: # 발급받은 api key

 

🤖 준비 완료 !