Alignment Project
Get Alignment Project Status
Get status of alignment project creation task
GET
/
api
/
v3
/
alignment-project
/
status
/
{id}
Copy
curl --request GET \
--url https://api.nugen.in/api/v3/alignment-project/status/{id} \
--header 'Authorization: Bearer <token>'
Copy
{
"status": "pending",
"data": {
"id": 123,
"name": "<string>",
"baseModel": "<string>",
"status": "pending",
"createdDate": "<string>",
"completedDate": "<string>",
"documents": [
"<string>"
],
"documentCount": 123,
"creator": "<string>",
"performanceMetrics": {
"accuracyBefore": 123,
"accuracyAfter": 123,
"uncertaintyBefore": 123,
"uncertaintyAfter": 123,
"domainViolationsBefore": 123,
"domainViolationsAfter": 123
},
"progress": 123,
"estimatedCompletion": "<string>",
"error": "<string>"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://api.nugen.in/api/v3/alignment-project/status/{id} \
--header 'Authorization: Bearer <token>'
Copy
{
"status": "pending",
"data": {
"id": 123,
"name": "<string>",
"baseModel": "<string>",
"status": "pending",
"createdDate": "<string>",
"completedDate": "<string>",
"documents": [
"<string>"
],
"documentCount": 123,
"creator": "<string>",
"performanceMetrics": {
"accuracyBefore": 123,
"accuracyAfter": 123,
"uncertaintyBefore": 123,
"uncertaintyAfter": 123,
"domainViolationsBefore": 123,
"domainViolationsAfter": 123
},
"progress": 123,
"estimatedCompletion": "<string>",
"error": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.