Kaynak: https://docs.google.com/spreadsheets...=1&gid=0#gid=0
Örnek:

4
●230

source API_Key.txt
message="$@"
echo ""
curl -s "https://api.groq.com/openai/v1/chat/completions" \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${API_Key}" \
-d '{
"messages": [
{
"role": "user",
"content": "'"$message"'\n"
}
],
"model": "llama3-8b-8192",
"temperature": 1,
"max_tokens": 1024,
"top_p": 1,
"stream": false,
"stop": null
}' |\
jq -r '.choices[0].message.content'