View and test active AI job tracking. Jobs are keyed by {objectId}_{identifier}.
Example Job Tokens
Use these formats to understand token structure:
select_prompt: {objectId}_select_prompt_{timestamp}_{random}
Example: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_select_prompt_1771022571836_abc123
Lookup Key: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_select_prompt
Job token (when prompt selected): {objectId}_{promptId}_{timestamp}_{random}
Example: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_promptId123_1771022571837_xyz789
Lookup Key: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_promptId123
ai:prompt (autofill): {objectId}_{fieldId}_{timestamp}_{random}
Example: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_description_1771022571838_def456
Lookup Key: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_description
proposeThought: {objectId}_proposeThought_{timestamp}_{random}
Example: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_proposeThought_1771022571839_ghi789
Lookup Key: 5ce3d147-f37d-4c8f-9c00-bc185182c4d5_proposeThought
Example Job JSON
Example job data structure (for reference):
{
"token": "5ce3d147-f37d-4c8f-9c00-bc185182c4d5_promptId123_1771022571837_xyz789",
"startTime": "2025-01-15T10:30:00.000Z",
"status": "running",
"promptId": "promptId123",
"promptName": "Generate Summary",
"fieldId": null,
"progress": 45,
"total": 100,
"message": "Processing files..."
}