For the complete documentation index, see llms.txt. This page is also available as Markdown.

Cancel job

You can also cancel the job that are currently in progress. Please note that after canceling a task, we will process a partial refund for the order based on the actual time it was running.

Replace {{API_TOKEN}} with your actual token.

Example Request:

curl --location --request POST 'https://api.netmind.ai/v1/fine-tuning/job/{{JOB_ID}/cancel' \
--header 'Authorization: Bearer {{API_TOKEN}}'
import requests

url = "https://api.netmind.ai/v1/fine-tuning/job/{{JOB_ID}}/cancel"

payload = {}
headers = {
  'Authorization': 'Bearer {{API_TOKEN}}'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)

Example Response:

Last updated