Skip to main content
Project prompts define the model instructions used by classification, extraction, grouped order detection, and related AI workflows. Open Project configuration > Prompts to create, edit, enable, disable, or delete prompts for the current project.

Copy prompts as JSON

Click Copy JSON to copy the current prompt catalog to your clipboard. The copied payload uses this shape:
{
  "prompts": [
    {
      "name": "shipment_count_detection",
      "template": "Prompt text...",
      "description": "Optional description",
      "requires_attachments": false,
      "is_active": true
    }
  ]
}
The export includes active and inactive prompts shown in the prompt list. It does not include prompts that were deleted.

Load prompts from JSON

Click Load JSON, paste a prompt payload, and click Import Prompts. The importer accepts either the wrapped object above or a bare array of prompt objects. It also accepts requiresAttachments and isActive for compatibility with camelCase exports. Loading JSON replaces the project’s current prompt list:
  • Prompts with matching name values are updated.
  • New name values are created.
  • Current prompts missing from the imported JSON are deleted from the prompt list.
Each imported prompt must have a non-empty name and template. Duplicate prompt names are rejected before import starts.