We pass the selected schema to GPT-4 Turbo for better script generation.
{#if dbSchema && dbSchema.stringified.length > MAX_SCHEMA_LENGTH}
The schema is about {addThousandsSeparator(dbSchema.stringified.length / 3.5)}
tokens. To avoid exceeding the model's context length, it will be truncated to
{addThousandsSeparator(MAX_SCHEMA_LENGTH / 3.5)}
tokens.
{/if}