curl --request POST \
--url https://api.promptlayer.com/rest/track-group \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>",
"request_id": "<string>",
"group_id": "<string>"
}'
curl --request POST \
--url https://api.promptlayer.com/rest/track-group \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>",
"request_id": "<string>",
"group_id": "<string>"
}'
pl_group_id = promptlayer.group.create()
import requests
response = requests.post(
"https://api.promptlayer.com/rest/track-group",
json={
"api_key": "<YOUR_API_KEY>",
"request_id": "<REQUEST_ID>",
"group_id": pl_group_id,
},
)
Was this page helpful?