AI Assistant - Conclude Session:
- 3-step modal: select outcome (resolved/escalated/paused), add notes, AI-generated summary
- AI generates structured ticket notes from conversation transcript (PSA-ready format)
- Copy to clipboard for pasting into ticketing systems
- "Resume in New Chat" for paused sessions (pre-loads context into new chat)
- Backend: POST /chats/{id}/conclude endpoint, conclusion_summary/outcome/concluded_at fields
- Migration 048: add conclusion fields to assistant_chats
Survey Completion Flow:
- Email-to-self option after submission (branded HTML email with formatted responses)
- Finish button navigates to /survey/thank-you page
- Thank you page with close-window message and feedback email callout
- Already-submitted state updated with same messaging
- Backend: POST /survey/email-copy public endpoint
Survey Admin Management:
- Read/unread indicators (cyan dot, bold name, auto-mark on expand)
- Unread count stat card
- Per-row context menu: mark read/unread, archive/unarchive, delete
- Bulk actions bar: select all, mark read/unread, archive, delete
- Show Archived toggle to filter archived responses
- Backend: 7 new admin endpoints (read, unread, archive, unarchive, delete, bulk)
- Migration 049: add is_read, archived_at to survey_responses
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
71 lines
1.7 KiB
Python
71 lines
1.7 KiB
Python
"""Pydantic schemas for standalone AI assistant chat."""
|
|
from typing import Optional, Any, Literal
|
|
from uuid import UUID
|
|
from datetime import datetime
|
|
from pydantic import BaseModel, Field
|
|
|
|
from app.schemas.copilot import SuggestedFlow
|
|
|
|
|
|
class ChatCreateRequest(BaseModel):
|
|
"""Empty body — creates a new blank conversation."""
|
|
pass
|
|
|
|
|
|
class ChatMessageRequest(BaseModel):
|
|
message: str = Field(..., min_length=1, max_length=8000)
|
|
|
|
|
|
class ChatMessageResponse(BaseModel):
|
|
content: str
|
|
suggested_flows: list[SuggestedFlow] = []
|
|
|
|
|
|
class ChatListResponse(BaseModel):
|
|
id: UUID
|
|
title: str
|
|
message_count: int
|
|
pinned: bool
|
|
created_at: datetime
|
|
updated_at: datetime
|
|
|
|
model_config = {"from_attributes": True}
|
|
|
|
|
|
class ChatDetailResponse(BaseModel):
|
|
id: UUID
|
|
title: str
|
|
messages: list[dict[str, Any]]
|
|
message_count: int
|
|
pinned: bool
|
|
created_at: datetime
|
|
updated_at: datetime
|
|
|
|
model_config = {"from_attributes": True}
|
|
|
|
|
|
class ChatUpdateRequest(BaseModel):
|
|
title: Optional[str] = Field(None, min_length=1, max_length=255)
|
|
pinned: Optional[bool] = None
|
|
|
|
|
|
class RetentionSettingsResponse(BaseModel):
|
|
chat_retention_days: Optional[int]
|
|
chat_retention_max_count: Optional[int]
|
|
|
|
|
|
class RetentionSettingsUpdate(BaseModel):
|
|
chat_retention_days: Optional[int] = Field(None, ge=1, le=365)
|
|
chat_retention_max_count: Optional[int] = Field(None, ge=10, le=10000)
|
|
|
|
|
|
class ConcludeChatRequest(BaseModel):
|
|
outcome: Literal["resolved", "escalated", "paused"]
|
|
notes: Optional[str] = Field(None, max_length=2000)
|
|
|
|
|
|
class ConcludeChatResponse(BaseModel):
|
|
summary: str
|
|
outcome: str
|
|
concluded_at: datetime
|