07-02 03:26
Notice
Recent Posts
Recent Comments
07-02 03:26
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Archives
Today
Total
관리 메뉴

pear

[openai] chatgpt 1 - Setting & RestAPI 본문

dev/etc

[openai] chatgpt 1 - Setting & RestAPI

pearlab 2023. 3. 20. 10:44

 

[Prepare the environment]

start openai home page

[Move to Developers Overview]

https://platform.openai.com/

Select Personal(my info) in Site

Move to View API Key 

Create new secret key

copy my "SECRET KEY"

 

https://platform.openai.com/

 

 

 

[Move to API reference tap]

http request(post) url : https://api.openai.com/v1/chat/completions

need Http Header

@content-type : application/json

@Authorization : Bearer "SECRET KEY"

@Json Body :

{
 "model": "gpt-3.5-turbo",
 "messages": [{"role": "user", "content": "boll game list"}, {"role": "user", "content": "one of the most popular games"}] 
 }

 

https://platform.openai.com/docs/api-reference/completions/create

 

 

next

'dev > etc' 카테고리의 다른 글

[openai] chatgpt 2 - RestAPI with retrofit  (0) 2023.03.20