File size: 15,954 Bytes
027123c 0721bb4 3743cfe 0721bb4 3743cfe 0721bb4 027123c 0721bb4 027123c 2ba0613 6bff5d9 3743cfe 6bff5d9 3743cfe 6bff5d9 3743cfe 6bff5d9 3743cfe 6bff5d9 3743cfe 6bff5d9 0721bb4 3743cfe 0721bb4 0e02a0f 0721bb4 0e02a0f 0721bb4 0e02a0f 0721bb4 0e02a0f 0721bb4 9070d67 0721bb4 0e02a0f 0721bb4 0e02a0f 0066161 0e02a0f 0066161 0721bb4 0e02a0f 0721bb4 0066161 0e02a0f 0721bb4 0e02a0f 0721bb4 0066161 f873f92 49b0848 f873f92 49b0848 f873f92 5a60e93 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | """SQLAlchemy database models."""
from uuid import uuid4
from sqlalchemy import (
Column,
DateTime,
ForeignKey,
Index,
Integer,
String,
Text,
text,
)
from sqlalchemy.dialects.postgresql import JSONB, UUID
from sqlalchemy.orm import relationship
from sqlalchemy.sql import func
from src.db.postgres.connection import Base
class User(Base):
"""User model."""
__tablename__ = "users"
id = Column(String, primary_key=True, default=lambda: str(uuid4()))
fullname = Column(String, nullable=False)
email = Column(String, nullable=False, unique=True, index=True)
password = Column(String, nullable=False) # bcrypt-hashed
company = Column(String)
company_size = Column(String)
function = Column(String)
site = Column(String)
role = Column(String)
status = Column(String, nullable=False, default="active") # active | inactive
created_at = Column(DateTime(timezone=True), server_default=func.now())
class Document(Base):
"""Document model."""
__tablename__ = "documents"
id = Column(String, primary_key=True, default=lambda: str(uuid4()))
user_id = Column(String, nullable=False, index=True)
filename = Column(String, nullable=False)
blob_name = Column(String, nullable=False, unique=True)
file_size = Column(Integer)
file_type = Column(String) # pdf, docx, txt, etc.
status = Column(String, default="uploaded") # uploaded, processing, completed, failed
processed_at = Column(DateTime(timezone=True))
error_message = Column(Text)
created_at = Column(DateTime(timezone=True), server_default=func.now())
class Room(Base):
"""Room model for chat sessions."""
__tablename__ = "rooms"
id = Column(String, primary_key=True, default=lambda: str(uuid4()))
user_id = Column(String, nullable=False, index=True)
title = Column(String, default="New Chat")
created_at = Column(DateTime(timezone=True), server_default=func.now())
updated_at = Column(DateTime(timezone=True), onupdate=func.now())
status = Column(String, nullable=False, default="active") # active | inactive
messages = relationship("ChatMessage", back_populates="room", cascade="all, delete-orphan")
class ChatMessage(Base):
"""Chat message model."""
__tablename__ = "chat_messages"
id = Column(String, primary_key=True, default=lambda: str(uuid4()))
room_id = Column(String, ForeignKey("rooms.id"), nullable=False, index=True)
role = Column(String, nullable=False) # user, assistant
content = Column(Text, nullable=False)
created_at = Column(DateTime(timezone=True), server_default=func.now())
room = relationship("Room", back_populates="messages")
sources = relationship("MessageSource", back_populates="message", cascade="all, delete-orphan")
class MessageSource(Base):
"""Sources (RAG references) attached to an assistant message."""
__tablename__ = "message_sources"
id = Column(String, primary_key=True, default=lambda: str(uuid4()))
message_id = Column(String, ForeignKey("chat_messages.id", ondelete="CASCADE"), nullable=False, index=True)
document_id = Column(String)
filename = Column(Text)
page_label = Column(Text)
created_at = Column(DateTime(timezone=True), server_default=func.now())
message = relationship("ChatMessage", back_populates="sources")
class DatabaseClient(Base):
"""User-registered external database connections."""
__tablename__ = "databases"
id = Column(String, primary_key=True, default=lambda: str(uuid4()))
user_id = Column(String, nullable=False, index=True)
name = Column(String, nullable=False) # display name, e.g. "Prod DB"
db_type = Column(String, nullable=False) # postgres|mysql|sqlserver|supabase|bigquery|snowflake
credentials = Column(JSONB, nullable=False) # per-type JSON; sensitive fields Fernet-encrypted
status = Column(String, nullable=False, default="active") # active | inactive
created_at = Column(DateTime(timezone=True), server_default=func.now())
updated_at = Column(DateTime(timezone=True), onupdate=func.now())
class Catalog(Base):
"""Data catalog — dedorch **`data_catalog`** (Go-owned; reconciled 2026-07-01).
Mirrors Go migration `0001`/`0002`. One jsonb `catalog_payload` per scope:
`scope_type='user'` rows are keyed by `user_id` (partial unique index),
`scope_type='analysis'` rows by `analysis_id`. Python is **consumer-only** —
Go's `catalog.Service` owns all writes (DB/file ingestion); `CatalogStore`
reads the user-scoped catalog and its write methods are legacy.
`catalog_payload` holds the full Pydantic Catalog (src/catalog/models.py:Catalog)
serialized via `model_dump(mode="json")`; the read path rehydrates with
`Catalog.model_validate(...)`. Go writes the same shape (json tags match).
"""
__tablename__ = "data_catalog"
id = Column(UUID(as_uuid=False), primary_key=True, default=lambda: str(uuid4()))
scope_type = Column(String, nullable=False, default="user") # 'user' | 'analysis'
user_id = Column(String, nullable=False, index=True)
analysis_id = Column(UUID(as_uuid=False), nullable=True)
catalog_payload = Column(JSONB, nullable=False)
schema_version = Column(String, nullable=False, default="1.0")
generated_at = Column(DateTime(timezone=True), nullable=False, server_default=func.now())
updated_at = Column(DateTime(timezone=True), onupdate=func.now())
__table_args__ = (
Index(
"idx_data_catalog_user_scope",
"user_id",
unique=True,
postgresql_where=text("scope_type = 'user'"),
),
Index(
"idx_data_catalog_analysis_scope",
"analysis_id",
unique=True,
postgresql_where=text("scope_type = 'analysis'"),
),
)
class ReportInputRow(Base):
"""One row per completed slow-path analysis (the report's source of truth).
`data` holds the full Pydantic AnalysisRecord
(src/agents/slow_path/schemas.py:AnalysisRecord) serialized via
`model_dump(mode="json")`; the read path rehydrates with
`AnalysisRecord.model_validate(...)`. Many records accumulate per analysis
session — `generate_report` reads them by `analysis_id`, oldest-first.
`analysis_id` is nullable until the Analysis State (owned upstream) is wired
into the slow path; records still persist (and carry `user_id`) before then.
OWNERSHIP / HANDOFF (#21/#22, 2026-06-25 checkpoint): table **renamed `analysis_records`
→ `report_inputs`** — it holds the inputs report generation reads (the slow-path run
records). "report_inputs" avoids clashing with Go's `analyses_messages` and with Langfuse
observability. **Python-owned for now** (Python still creates it locally); the finalized
schema goes to Harry so the dedorch migration creates it post-cutover (#22), where
`id`/`analysis_id` will be `uuid` (+ FK to `analyses(id)`). The Pydantic `AnalysisRecord`
(the in-memory run object) is intentionally kept. Slated to migrate to Go ownership later —
keep this + DEV_PLAN #21/#22 as the handoff record. NOTE: dedorch currently still has the
OLD `analysis_records` table (empty) until Harry's rename migration lands.
"""
__tablename__ = "report_inputs"
# id/analysis_id are `uuid` to match dedorch's `report_inputs` + the analysis-family
# (analyses/reports/data_sources). No FK declared in Python (dedorch's migration owns it, #22).
id = Column(UUID(as_uuid=False), primary_key=True) # AnalysisRecord.record_id (uuid hex ok)
analysis_id = Column(UUID(as_uuid=False), index=True) # the analysis session id (nullable for now)
user_id = Column(String, nullable=False, index=True)
plan_id = Column(String, nullable=False)
data = Column(JSONB, nullable=False)
created_at = Column(DateTime(timezone=True), server_default=func.now())
class AnalysisReportRow(Base):
"""One immutable row per generated report version — dedorch `reports` (Go-owned).
dedorch stores the rendered markdown `content` + `title` + `version` (no jsonb
snapshot — markdown-only per the 2026-06-23 checkpoint). The read path rebuilds a
minimal `AnalysisReport` (structured fields empty; `rendered_markdown` = content).
Versions accumulate per analysis; versioning is serialized by a per-analysis
advisory lock in `ReportStore`. Class name kept; table + shape changed for dedorch.
"""
__tablename__ = "reports"
id = Column(UUID(as_uuid=False), primary_key=True) # AnalysisReport.report_id (uuid)
analysis_id = Column(UUID(as_uuid=False), nullable=False, index=True)
# Added by Go 2026-07 (text, like `analyses.user_id`); NOT NULL in some deployments,
# nullable in others — declared nullable here so Python matches the loosest shape,
# but ReportStore always writes it (a missing value 500s on the strict DBs).
user_id = Column(Text)
title = Column(String, nullable=False)
content = Column(Text, nullable=False) # rendered markdown
generated_at = Column(DateTime(timezone=True), nullable=False, server_default=func.now())
version = Column(Integer, nullable=False)
class AnalysisStateRow(Base):
"""Per-analysis session state — the dedorch **`analyses`** table (plural; Go-owned).
One session = one analysis = one conversation; `id` is the shared session id
(canonical UUID). Verified against the dedorch DB 2026-06-25.
dedorch `analyses` columns (reconciled 2026-07-01 — Harry's #3 landed): `id` (uuid),
`analysis_title`, `objective` (text), `business_questions` (jsonb), `user_id` (text),
`report_id` (uuid), `status` (text 'active'|'inactive' — soft-delete), `data_bind` (jsonb),
`data_bind_version` (int), `report_collection` (jsonb), `created_at`, `updated_at`.
`problem_statement`/`problem_validated` were DROPPED in dedorch (#3) and removed here;
`objective` + `business_questions` (the user-entered goal, set at onboarding by Go) replace
them. The FE/Go columns (`status`/`data_bind*`/`report_collection`) are carried to match
dedorch but are NOT surfaced in the `AnalysisState` pydantic contract. `analysis` (singular)
is the deprecated DUPLICATE table Harry will drop — never use it. Class name kept.
"""
__tablename__ = "analyses"
id = Column(UUID(as_uuid=False), primary_key=True) # shared session id (uuid)
analysis_title = Column(String, nullable=False, default="New analysis")
objective = Column(Text, nullable=False, default="")
business_questions = Column(JSONB, nullable=False, default=list)
user_id = Column(String, nullable=False, index=True) # was owner_id (dedorch uses user_id)
report_id = Column(UUID(as_uuid=False), nullable=True)
# dedorch `analyses` columns (FE/Go concerns; carried so create_all matches dedorch).
status = Column(String, nullable=False, default="active") # active | inactive (soft-delete)
data_bind = Column(JSONB, nullable=False, default=list)
data_bind_version = Column(Integer, nullable=False, default=1)
report_collection = Column(JSONB, nullable=False, default=list)
created_at = Column(DateTime(timezone=True), server_default=func.now())
updated_at = Column(
DateTime(timezone=True), server_default=func.now(), onupdate=func.now()
)
class AnalysesMessageRow(Base):
"""One conversation message — dedorch `analyses_messages` (Go-owned table).
The analysis chat room (user question + AI answer), replacing the deprecated
`rooms`/`chat_messages`. Python is a **consumer/writer** here: it INSERTs and reads
rows but does NOT own the table (Go's migration creates it). Shape mirrors the Go
contract (`API_CONTRACT_BE_GOLANG.md` §Analysis Messages): `role ∈ user|ai`. RAG source
citations are NOT persisted here — the old `message_sources` table is deprecated along
with `chat_messages`.
"""
__tablename__ = "analyses_messages"
id = Column(UUID(as_uuid=False), primary_key=True)
analysis_id = Column(UUID(as_uuid=False), nullable=False, index=True)
user_id = Column(String, nullable=False, index=True)
role = Column(String, nullable=False) # user | ai
content = Column(Text, nullable=False)
created_at = Column(DateTime(timezone=True), nullable=False, server_default=func.now())
class MessageTraceabilityRow(Base):
"""One row per assistant turn — user-facing provenance (KM-691).
`data` holds the full Pydantic `TraceabilityPayload`
(src\\traceability\\schemas.py:TraceabilityPayload) serialized via
`model_dump(mode="json", by_alias=True)`; the read path rehydrates with
`TraceabilityPayload.model_validate(...)`. One row per assistant `message_id`
(the Python-minted turn id, a UUID string), written before the `done` SSE event
and served by `GET /api/v1/traceability`.
OWNERSHIP / HANDOFF (KM-691): **Python-owned for now**, the same pattern as
`report_inputs` (ReportInputRow). Post-cutover `init_db` no longer runs
`create_all`, so the table is created by a one-time manual DDL run against
dedorch (Rifqi, 2026-07-06); the finalized schema goes to Harry so the dedorch
migration creates it later (`message_id`/`analysis_id` gain the FK to
`analyses(id)` there). Distinct from Langfuse observability — this is unmasked,
user-facing provenance, not engineering telemetry.
"""
__tablename__ = "message_traceability"
message_id = Column(String, primary_key=True) # Python-minted turn id (UUID string)
analysis_id = Column(UUID(as_uuid=False), nullable=False, index=True) # analysis session id
user_id = Column(String, nullable=False)
intent = Column(String, nullable=False)
data = Column(JSONB, nullable=False) # full TraceabilityPayload (source of truth)
created_at = Column(DateTime(timezone=True), nullable=False, server_default=func.now())
class MessageChartRow(Base):
"""One row per chart produced by `render_chart` — S2 visualization (SPINE_V2_PLAN §4.4).
`spec` holds the full `dataeyond.chart.v1` envelope (SPINE_V2_PLAN §4.2) exactly as
returned by the tool — `{schema, chart_type, title, plotly: {data, layout}}` — it is
the source of truth the FE renders with
`Plotly.newPlot(el, spec.plotly.data, spec.plotly.layout)`. Unlike
`MessageTraceabilityRow` (one row per turn), **multiple rows can share one
`message_id`** — one row per chart a turn produced. Written before the `done` SSE
event and served by `GET /api/v1/charts` (SPINE_V2_PLAN §4.4/§4.5).
OWNERSHIP / HANDOFF (SPINE_V2_PLAN §4.4, 2026-07-13): **Python-owned for now**, the
same pattern as `report_inputs` / `message_traceability`. Post-cutover `init_db` no
longer runs `create_all`, so the table is created by a one-time manual DDL run
against dedorch (Rifqi, 2026-07-13); the finalized schema goes to Harry so the
dedorch migration re-creates it later (`analysis_id` gains the FK to `analyses(id)`
there).
"""
__tablename__ = "message_charts"
# Client-minted default — the DDL's `gen_random_uuid()` default never fires from
# Python (we always pass `id` explicitly, but the default is here for parity).
id = Column(UUID(as_uuid=False), primary_key=True, default=lambda: str(uuid4()))
message_id = Column(String, nullable=False, index=True) # turn id; multiple rows per turn
analysis_id = Column(UUID(as_uuid=False), nullable=False, index=True) # analysis session id
user_id = Column(String, nullable=False)
record_id = Column(String, nullable=True)
chart_type = Column(String, nullable=False)
title = Column(String, nullable=True)
spec = Column(JSONB, nullable=False) # full dataeyond.chart.v1 envelope (source of truth)
created_at = Column(DateTime(timezone=True), nullable=False, server_default=func.now())
|