Generate Input/Response Pairs
Retrieve
Checks the status of a Generation Input-Response Pairs job
GET
Authorizations
Path Parameters
Response
200
application/json
Successful Response
SyntheticDataStatus is the result of a synthetic data generation job.
Detailed status of the job
Examples:
["Downloading model", "Tuning prompt"]
The job id
Examples:
"1234abcd"
Current state of the job
Available options:
QUEUED
, RUNNING
, DONE
, ERROR
, CANCELLED
The generated synthetic data. Can be present even if the state is not done/error as it is streamed.
An example for training or evaluation
Examples:
[
{
"llm_input": "Tell me something different",
"llm_output": "The lazy dog was jumped over by the quick brown fox"
},
{
"llm_input": "Write a short poem",
"llm_output": "Moonlight dancing on waves,\nStars whisper ancient tales,\nNight's gentle embrace"
}
]