Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Response
Fine-tune job deleted successfully
Message indicating the result of the deletion
from together import Together
import os
client = Together(
api_key=os.environ.get("TOGETHER_API_KEY"),
)
response = client.fine_tuning.delete(id="ft-id")
print(response){
"message": "<string>"
}Delete a fine-tuning job.
from together import Together
import os
client = Together(
api_key=os.environ.get("TOGETHER_API_KEY"),
)
response = client.fine_tuning.delete(id="ft-id")
print(response){
"message": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Fine-tune job deleted successfully
Message indicating the result of the deletion
Was this page helpful?