ec81940178
- 0.7: UI-Design-Richtlinien (docs/ui-design-guidelines.md, 535 lines) - 0.8: Theme-Customization Backend (4 theme fields, migration 0023) - 0.9: Theme-Customization Frontend (SettingsTheme.tsx, themeStore.ts, live preview) - 0.10: RBAC-Audit (4 plugins secured, 53 routes with require_permission) - 0.11: LiteLLM-Cleanup (llm_client.py migrated from httpx to litellm) - 0.12: KI-Agent-Framework docs (plugin-development-guide.md, agent_capabilities field) - 0.13: Heartbeat configurable (ProactiveSettings, migration 0024, frontend UI) - 0.14: Unified Search Field-Level RBAC (resolve_permissions + filter_fields_by_permission) - 0.15: Undo/History-System (EntityHistory model, service, routes, migration 0025, HistoryViewer) - 0.16: Storage Backend (LocalStorage + S3Storage, DMS/attachments/mail updated) - 0.17: Import/Export unified Contact fields (firstname, surname, email_1, phone_1) - 0.18: .gitignore & Config-Cleanup (webui→frontend, python-jose removed, .env untracked) - 0.19: Mail-Salt Security-Fix (per-account random salt, migration 0026) - 0.20: AGPL replaced (PyMuPDF→pypdf, OnlyOffice→Collabora, LICENSE + THIRD_PARTY_LICENSES.md)
116 lines
4.3 KiB
Python
116 lines
4.3 KiB
Python
"""SQLAlchemy models for the AI Proactive plugin."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import uuid
|
|
from datetime import datetime
|
|
from typing import Any
|
|
|
|
from sqlalchemy import (
|
|
Boolean,
|
|
DateTime,
|
|
Float,
|
|
ForeignKey,
|
|
Index,
|
|
Integer,
|
|
String,
|
|
Text,
|
|
)
|
|
from sqlalchemy.dialects.postgresql import JSONB, UUID as PGUUID
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.core.db import Base, TenantMixin
|
|
|
|
|
|
class ProactiveSuggestion(Base, TenantMixin):
|
|
"""A proactive AI suggestion generated from user context."""
|
|
|
|
__tablename__ = "ai_proactive_suggestions"
|
|
__table_args__ = (
|
|
Index(
|
|
"ix_suggestions_user",
|
|
"tenant_id",
|
|
"user_id",
|
|
"is_dismissed",
|
|
"created_at",
|
|
),
|
|
Index("ix_suggestions_entity", "tenant_id", "entity_type", "entity_id"),
|
|
)
|
|
|
|
id: Mapped[uuid.UUID] = mapped_column(
|
|
PGUUID(as_uuid=True), primary_key=True, default=uuid.uuid4
|
|
)
|
|
user_id: Mapped[uuid.UUID] = mapped_column(
|
|
PGUUID(as_uuid=True), ForeignKey("users.id", ondelete="CASCADE"), nullable=False
|
|
)
|
|
entity_type: Mapped[str] = mapped_column(String(50), nullable=False)
|
|
entity_id: Mapped[uuid.UUID | None] = mapped_column(PGUUID(as_uuid=True), nullable=True)
|
|
suggestion_type: Mapped[str] = mapped_column(
|
|
String(50), nullable=False, default="info"
|
|
)
|
|
title: Mapped[str] = mapped_column(String(200), nullable=False)
|
|
content: Mapped[str] = mapped_column(Text, nullable=False)
|
|
confidence: Mapped[float] = mapped_column(Float, nullable=False, default=0.5)
|
|
actions: Mapped[list[Any]] = mapped_column(JSONB, nullable=False, default=list)
|
|
is_dismissed: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False)
|
|
is_acted_upon: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False)
|
|
context_snapshot: Mapped[dict[str, Any]] = mapped_column(
|
|
JSONB, nullable=False, default=dict
|
|
)
|
|
expires_at: Mapped[datetime | None] = mapped_column(
|
|
DateTime(timezone=True), nullable=True
|
|
)
|
|
|
|
|
|
class ContextLog(Base, TenantMixin):
|
|
"""Log of user context changes (page views, entity selections)."""
|
|
|
|
__tablename__ = "ai_proactive_context_log"
|
|
__table_args__ = (
|
|
Index("ix_context_log_user_time", "tenant_id", "user_id", "created_at"),
|
|
)
|
|
|
|
id: Mapped[uuid.UUID] = mapped_column(
|
|
PGUUID(as_uuid=True), primary_key=True, default=uuid.uuid4
|
|
)
|
|
user_id: Mapped[uuid.UUID] = mapped_column(
|
|
PGUUID(as_uuid=True), ForeignKey("users.id", ondelete="CASCADE"), nullable=False
|
|
)
|
|
page: Mapped[str] = mapped_column(String(200), nullable=False)
|
|
entity_type: Mapped[str | None] = mapped_column(String(50), nullable=True)
|
|
entity_id: Mapped[uuid.UUID | None] = mapped_column(PGUUID(as_uuid=True), nullable=True)
|
|
entity_data: Mapped[dict[str, Any]] = mapped_column(
|
|
JSONB, nullable=False, default=dict
|
|
)
|
|
|
|
|
|
class ProactiveSettings(Base, TenantMixin):
|
|
"""Per-user settings for proactive AI."""
|
|
|
|
__tablename__ = "ai_proactive_settings"
|
|
__table_args__ = (
|
|
Index("ix_proactive_settings_user", "tenant_id", "user_id"),
|
|
)
|
|
|
|
id: Mapped[uuid.UUID] = mapped_column(
|
|
PGUUID(as_uuid=True), primary_key=True, default=uuid.uuid4
|
|
)
|
|
user_id: Mapped[uuid.UUID] = mapped_column(
|
|
PGUUID(as_uuid=True), ForeignKey("users.id", ondelete="CASCADE"), nullable=False
|
|
)
|
|
enabled: Mapped[bool] = mapped_column(Boolean, nullable=False, default=True)
|
|
suggestion_categories: Mapped[list[Any]] = mapped_column(
|
|
JSONB, nullable=False, default=lambda: ["mail", "tasks", "contacts", "companies", "insights"]
|
|
)
|
|
confidence_threshold: Mapped[float] = mapped_column(
|
|
Float, nullable=False, default=0.5
|
|
)
|
|
rate_limit_seconds: Mapped[int] = mapped_column(
|
|
Integer, nullable=False, default=10
|
|
)
|
|
model: Mapped[str] = mapped_column(String(100), nullable=False, default="ollama/deepseek-v4-flash")
|
|
# Heartbeat configuration
|
|
heartbeat_enabled: Mapped[bool] = mapped_column(Boolean, nullable=False, default=True)
|
|
heartbeat_interval_seconds: Mapped[int] = mapped_column(Integer, nullable=False, default=300)
|
|
heartbeat_target_room: Mapped[str] = mapped_column(String(200), nullable=False, default="Live KI")
|