AI Docs Schema
ext_ai_docs - AI Documents
Section titled “ext_ai_docs - AI Documents”Schema: ext_ai_docs | Auto-generated on 2026-03-30
ai_documents
Section titled “ai_documents”AI-generated documents from prompts.
| Column | Type | Nullable | Default |
|---|---|---|---|
id | uuid | NO | gen_random_uuid() |
user_id | uuid | NO | — |
title | text | NO | — |
prompt | text | NO | — |
model | text | NO | — |
response | text | NO | — |
tokens_used | integer | NO | 0 |
created_at | timestamptz | NO | now() |
ai_summaries
Section titled “ai_summaries”AI-generated summaries of existing documents.
| Column | Type | Nullable | Default |
|---|---|---|---|
id | uuid | NO | gen_random_uuid() |
user_id | uuid | NO | — |
document_id | uuid | NO | — |
model | text | NO | — |
summary | text | NO | — |
tokens_used | integer | NO | 0 |
created_at | timestamptz | NO | now() |
ai_templates
Section titled “ai_templates”Reusable prompt templates for AI generation.
| Column | Type | Nullable | Default |
|---|---|---|---|
id | uuid | NO | gen_random_uuid() |
user_id | uuid | NO | — |
name | text | NO | — |
prompt_template | text | NO | — |
category | text | YES | — |
model | text | NO | 'gpt-4o' |
parameters | jsonb | YES | '{}' |
created_at | timestamptz | NO | now() |
updated_at | timestamptz | NO | now() |