서지현·2023년 6월 10일
curl https://api.spring-chatgpt-communication.com/v1/summarize \
  -H "Content-Type: text/plain" \
  -d '{
  		i love movie, i love soccer
  }'
chatAsk -s "i love movie, i love soccer"
curl https://api.spring-chatgpt-communication.com/v1/at \
  -H "Content-Type: multipart/form-data" \
  -F file="@/path/to/file/audio.mp3" \
curl https://api.openai.com/v1/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -d '{
  "model": "text-davinci-003",
  "prompt": "Summarize this for a second-grade student:\n\n i love movie and soccer",
  "temperature": 1,
  "max_tokens": 64,
  "top_p": 1.0,
  "frequency_penalty": 0.0,
  "presence_penalty": 0.0
}'
profile
안녕하세요

0개의 댓글