Skip to main content
GET
/
api
/
llm
/
training_job
/
get
Retrieve details of a specific LLM/VLM training job
curl --request GET \
  --url https://training-suite.uat-infer.shakticloud.ai/api/llm/training_job/get/ \
  --header 'Authorization: Bearer <token>'
{
  "request_id": "<string>",
  "experiment_name": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "config": {},
  "progress": 123,
  "model_type": "<string>",
  "base_model": "<string>",
  "output_model": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.shaktistudio.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token for authentication

Headers

Authorization
string
required

Bearer token for authentication and authorization.

Query Parameters

org_id
string
required

Organization ID to which the training job belongs.

request_id
string
required

Unique identifier for the training job request.

Response

200 - application/json

The requested training job details were retrieved successfully.

request_id
string

Unique identifier for the training job request

experiment_name
string

Name of the training experiment

status
string

Current status of the training job

created_at
string<date-time>

Timestamp when the job was created

config
object

The complete training configuration used for this job

progress
number

Progress percentage of the training job (0-100)

model_type
string

Type of model being trained (LLM or VLM)

base_model
string

Base model used for training

output_model
string

Path to the trained model output (when completed)