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
}'