GET
/
v2
/
get_job_config
curl --request GET \
  --url http://127.0.0.1:9550/v2/get_job_config
{
  "custom_prompt": "<string>",
  "other_model_params": "<any>",
  "seed": 1,
  "stream": true,
  "temperature": 123,
  "top_k": 1,
  "top_p": 123
}

Retrieve the current configuration settings for a specific job.

Query Parameters

job_id
string
required

Job ID to retrieve configuration for

Response

200
application/json
Successfully retrieved job configuration
custom_prompt
string | null
other_model_params
any | null
seed
integer | null
Required range: x > 0
stream
boolean | null
temperature
number | null
top_k
integer | null
Required range: x > 0
top_p
number | null