ElegantInsights

Custom Instructions

Add your own specific requirements for the AI assistant.

Last updated on

Default: Not set · Type: Text

Free-form instructions (up to 1,000 characters) appended to every request, letting you steer the assistant globally. Examples: "Always explain assumptions", "Prefer simple queries", "Include validation checks".

Custom instructions are injected after the shared, cached prompt, so they personalise responses without affecting other users.

What changes

A custom instruction can reshape the output however you like. Here every column heading is prefixed with Cheese 🧀 (look at the aliases). The rest of the query is identical.

With instruction

Custom instruction: "Start every column heading with the word ‘Cheese’ 🧀 so I can always spot my reports."

sql
SELECT    f.FaultID AS [Cheese Ticket ID],    f.Symptom AS [Cheese Subject],    a.aareadesc AS [Cheese Customer],    ts.TStatusDesc AS [Cheese Status],    f.DateOccured AS [Cheese Date Opened]FROM Faults fJOIN Area a ON a.AArea = f.AreaIntJOIN TStatus ts ON ts.TStatus = f.StatusWHERE f.FDeleted = 0    AND f.Status <> 9    AND f.DateOccured >= @startdate    AND f.DateOccured < @enddate

Without

sql
SELECT    f.FaultID AS [Ticket ID],    f.Symptom AS [Subject],    a.aareadesc AS [Customer],    ts.TStatusDesc AS [Status],    f.DateOccured AS [Date Opened]FROM Faults fJOIN Area a ON a.AArea = f.AreaIntJOIN TStatus ts ON ts.TStatus = f.StatusWHERE f.FDeleted = 0    AND f.Status <> 9    AND f.DateOccured >= @startdate    AND f.DateOccured < @enddate

Where to change it

Set this under Profile → Prompt settings in the app. See all AI settings.

On this page