2026-02-05 17:55:21 +02:00
|
|
|
from .auth import (
|
|
|
|
|
LogoutAllResponse,
|
|
|
|
|
LogoutRequest,
|
|
|
|
|
LogoutResponse,
|
|
|
|
|
RefreshTokenRequest,
|
|
|
|
|
RefreshTokenResponse,
|
|
|
|
|
)
|
2025-07-24 14:43:48 -07:00
|
|
|
from .base import IDModel, TimestampModel
|
|
|
|
|
from .chunks import ChunkBase, ChunkCreate, ChunkRead, ChunkUpdate
|
2025-03-14 18:53:14 -07:00
|
|
|
from .documents import (
|
|
|
|
|
DocumentBase,
|
2025-07-24 14:43:48 -07:00
|
|
|
DocumentRead,
|
2026-02-09 16:49:11 -08:00
|
|
|
DocumentsCreate,
|
2026-02-09 16:46:54 -08:00
|
|
|
DocumentStatusBatchResponse,
|
|
|
|
|
DocumentStatusItemRead,
|
2026-02-05 21:59:31 +05:30
|
|
|
DocumentStatusSchema,
|
2026-01-17 20:45:10 +05:30
|
|
|
DocumentTitleRead,
|
|
|
|
|
DocumentTitleSearchResponse,
|
2025-03-14 18:53:14 -07:00
|
|
|
DocumentUpdate,
|
2025-08-23 18:48:18 -07:00
|
|
|
DocumentWithChunksRead,
|
2025-07-24 14:43:48 -07:00
|
|
|
ExtensionDocumentContent,
|
|
|
|
|
ExtensionDocumentMetadata,
|
2025-10-01 13:05:22 -07:00
|
|
|
PaginatedResponse,
|
2025-07-24 14:43:48 -07:00
|
|
|
)
|
2026-01-17 12:33:57 +05:30
|
|
|
from .google_drive import DriveItem, GoogleDriveIndexingOptions, GoogleDriveIndexRequest
|
2026-02-05 16:43:48 -08:00
|
|
|
from .image_generation import (
|
|
|
|
|
GlobalImageGenConfigRead,
|
|
|
|
|
ImageGenerationConfigCreate,
|
|
|
|
|
ImageGenerationConfigPublic,
|
|
|
|
|
ImageGenerationConfigRead,
|
|
|
|
|
ImageGenerationConfigUpdate,
|
|
|
|
|
ImageGenerationCreate,
|
|
|
|
|
ImageGenerationListRead,
|
|
|
|
|
ImageGenerationRead,
|
|
|
|
|
)
|
2025-07-24 14:43:48 -07:00
|
|
|
from .logs import LogBase, LogCreate, LogFilter, LogRead, LogUpdate
|
2025-12-21 16:16:50 -08:00
|
|
|
from .new_chat import (
|
2025-12-21 19:33:52 -08:00
|
|
|
ChatMessage,
|
2025-12-21 16:16:50 -08:00
|
|
|
NewChatMessageAppend,
|
|
|
|
|
NewChatMessageCreate,
|
|
|
|
|
NewChatMessageRead,
|
2025-12-21 19:33:52 -08:00
|
|
|
NewChatRequest,
|
2025-12-21 16:16:50 -08:00
|
|
|
NewChatThreadCreate,
|
|
|
|
|
NewChatThreadRead,
|
|
|
|
|
NewChatThreadUpdate,
|
|
|
|
|
NewChatThreadWithMessages,
|
|
|
|
|
ThreadHistoryLoadResponse,
|
|
|
|
|
ThreadListItem,
|
|
|
|
|
ThreadListResponse,
|
|
|
|
|
)
|
2025-12-23 01:16:25 -08:00
|
|
|
from .new_llm_config import (
|
|
|
|
|
DefaultSystemInstructionsResponse,
|
|
|
|
|
GlobalNewLLMConfigRead,
|
|
|
|
|
LLMPreferencesRead,
|
|
|
|
|
LLMPreferencesUpdate,
|
|
|
|
|
NewLLMConfigCreate,
|
|
|
|
|
NewLLMConfigPublic,
|
|
|
|
|
NewLLMConfigRead,
|
|
|
|
|
NewLLMConfigUpdate,
|
|
|
|
|
)
|
2025-12-21 22:26:33 -08:00
|
|
|
from .podcasts import PodcastBase, PodcastCreate, PodcastRead, PodcastUpdate
|
2025-11-27 22:45:04 -08:00
|
|
|
from .rbac_schemas import (
|
|
|
|
|
InviteAcceptRequest,
|
|
|
|
|
InviteAcceptResponse,
|
|
|
|
|
InviteCreate,
|
|
|
|
|
InviteInfoResponse,
|
|
|
|
|
InviteRead,
|
|
|
|
|
InviteUpdate,
|
|
|
|
|
MembershipRead,
|
|
|
|
|
MembershipReadWithUser,
|
|
|
|
|
MembershipUpdate,
|
|
|
|
|
PermissionInfo,
|
|
|
|
|
PermissionsListResponse,
|
|
|
|
|
RoleCreate,
|
|
|
|
|
RoleRead,
|
|
|
|
|
RoleUpdate,
|
|
|
|
|
UserSearchSpaceAccess,
|
|
|
|
|
)
|
2026-02-16 00:11:34 +05:30
|
|
|
from .reports import (
|
|
|
|
|
ReportBase,
|
|
|
|
|
ReportContentRead,
|
|
|
|
|
ReportContentUpdate,
|
|
|
|
|
ReportRead,
|
|
|
|
|
ReportVersionInfo,
|
|
|
|
|
)
|
2025-07-24 14:43:48 -07:00
|
|
|
from .search_source_connector import (
|
2026-01-13 13:46:01 -08:00
|
|
|
MCPConnectorCreate,
|
|
|
|
|
MCPConnectorRead,
|
|
|
|
|
MCPConnectorUpdate,
|
|
|
|
|
MCPServerConfig,
|
2025-07-24 14:43:48 -07:00
|
|
|
SearchSourceConnectorBase,
|
|
|
|
|
SearchSourceConnectorCreate,
|
|
|
|
|
SearchSourceConnectorRead,
|
|
|
|
|
SearchSourceConnectorUpdate,
|
2025-03-14 18:53:14 -07:00
|
|
|
)
|
2025-07-24 14:43:48 -07:00
|
|
|
from .search_space import (
|
|
|
|
|
SearchSpaceBase,
|
|
|
|
|
SearchSpaceCreate,
|
|
|
|
|
SearchSpaceRead,
|
|
|
|
|
SearchSpaceUpdate,
|
2025-11-27 22:45:04 -08:00
|
|
|
SearchSpaceWithStats,
|
2025-07-24 14:43:48 -07:00
|
|
|
)
|
|
|
|
|
from .users import UserCreate, UserRead, UserUpdate
|
2026-03-21 22:13:41 -07:00
|
|
|
from .video_presentations import (
|
|
|
|
|
VideoPresentationBase,
|
|
|
|
|
VideoPresentationCreate,
|
|
|
|
|
VideoPresentationRead,
|
|
|
|
|
VideoPresentationUpdate,
|
|
|
|
|
)
|
2025-03-14 18:53:14 -07:00
|
|
|
|
|
|
|
|
__all__ = [
|
2025-12-21 19:33:52 -08:00
|
|
|
# Chat schemas (assistant-ui integration)
|
|
|
|
|
"ChatMessage",
|
|
|
|
|
# Chunk schemas
|
2025-07-24 14:43:48 -07:00
|
|
|
"ChunkBase",
|
|
|
|
|
"ChunkCreate",
|
|
|
|
|
"ChunkRead",
|
|
|
|
|
"ChunkUpdate",
|
2025-12-23 01:16:25 -08:00
|
|
|
"DefaultSystemInstructionsResponse",
|
2025-12-21 19:33:52 -08:00
|
|
|
# Document schemas
|
2025-07-24 14:43:48 -07:00
|
|
|
"DocumentBase",
|
|
|
|
|
"DocumentRead",
|
2026-02-09 16:46:54 -08:00
|
|
|
"DocumentStatusBatchResponse",
|
|
|
|
|
"DocumentStatusItemRead",
|
2026-02-05 21:59:31 +05:30
|
|
|
"DocumentStatusSchema",
|
2026-01-17 20:45:10 +05:30
|
|
|
"DocumentTitleRead",
|
|
|
|
|
"DocumentTitleSearchResponse",
|
2025-07-24 14:43:48 -07:00
|
|
|
"DocumentUpdate",
|
2025-08-23 18:48:18 -07:00
|
|
|
"DocumentWithChunksRead",
|
2025-07-24 14:43:48 -07:00
|
|
|
"DocumentsCreate",
|
2026-01-01 22:56:37 -08:00
|
|
|
# Google Drive schemas
|
|
|
|
|
"DriveItem",
|
2025-07-24 14:43:48 -07:00
|
|
|
"ExtensionDocumentContent",
|
|
|
|
|
"ExtensionDocumentMetadata",
|
2026-02-05 17:18:27 -08:00
|
|
|
"GlobalImageGenConfigRead",
|
2025-12-23 01:16:25 -08:00
|
|
|
"GlobalNewLLMConfigRead",
|
2025-12-31 14:15:07 +02:00
|
|
|
"GoogleDriveIndexRequest",
|
2026-01-17 16:30:07 +05:30
|
|
|
"GoogleDriveIndexingOptions",
|
2025-12-21 19:33:52 -08:00
|
|
|
# Base schemas
|
2025-07-24 14:43:48 -07:00
|
|
|
"IDModel",
|
2026-02-05 16:43:48 -08:00
|
|
|
# Image Generation Config schemas
|
|
|
|
|
"ImageGenerationConfigCreate",
|
|
|
|
|
"ImageGenerationConfigPublic",
|
|
|
|
|
"ImageGenerationConfigRead",
|
|
|
|
|
"ImageGenerationConfigUpdate",
|
|
|
|
|
# Image Generation schemas
|
|
|
|
|
"ImageGenerationCreate",
|
|
|
|
|
"ImageGenerationListRead",
|
|
|
|
|
"ImageGenerationRead",
|
2025-12-21 22:26:33 -08:00
|
|
|
# RBAC schemas
|
|
|
|
|
"InviteAcceptRequest",
|
|
|
|
|
"InviteAcceptResponse",
|
|
|
|
|
"InviteCreate",
|
|
|
|
|
"InviteInfoResponse",
|
|
|
|
|
"InviteRead",
|
|
|
|
|
"InviteUpdate",
|
2025-12-23 01:16:25 -08:00
|
|
|
# LLM Preferences schemas
|
|
|
|
|
"LLMPreferencesRead",
|
|
|
|
|
"LLMPreferencesUpdate",
|
2025-12-21 19:33:52 -08:00
|
|
|
# Log schemas
|
2025-07-16 01:10:33 -07:00
|
|
|
"LogBase",
|
|
|
|
|
"LogCreate",
|
|
|
|
|
"LogFilter",
|
2025-07-24 14:43:48 -07:00
|
|
|
"LogRead",
|
|
|
|
|
"LogUpdate",
|
2026-02-05 17:29:50 +02:00
|
|
|
# Auth schemas
|
|
|
|
|
"LogoutAllResponse",
|
2026-02-05 17:55:21 +02:00
|
|
|
"LogoutRequest",
|
2026-02-05 17:29:50 +02:00
|
|
|
"LogoutResponse",
|
2026-01-13 13:46:01 -08:00
|
|
|
# Search source connector schemas
|
|
|
|
|
"MCPConnectorCreate",
|
|
|
|
|
"MCPConnectorRead",
|
|
|
|
|
"MCPConnectorUpdate",
|
|
|
|
|
"MCPServerConfig",
|
2025-11-27 22:45:04 -08:00
|
|
|
"MembershipRead",
|
|
|
|
|
"MembershipReadWithUser",
|
|
|
|
|
"MembershipUpdate",
|
2025-12-21 22:26:33 -08:00
|
|
|
"NewChatMessageAppend",
|
|
|
|
|
"NewChatMessageCreate",
|
|
|
|
|
"NewChatMessageRead",
|
|
|
|
|
"NewChatRequest",
|
|
|
|
|
"NewChatThreadCreate",
|
|
|
|
|
"NewChatThreadRead",
|
|
|
|
|
"NewChatThreadUpdate",
|
|
|
|
|
"NewChatThreadWithMessages",
|
2025-12-23 01:16:25 -08:00
|
|
|
# NewLLMConfig schemas
|
|
|
|
|
"NewLLMConfigCreate",
|
|
|
|
|
"NewLLMConfigPublic",
|
|
|
|
|
"NewLLMConfigRead",
|
|
|
|
|
"NewLLMConfigUpdate",
|
2025-12-21 22:26:33 -08:00
|
|
|
"PaginatedResponse",
|
2025-11-27 22:45:04 -08:00
|
|
|
"PermissionInfo",
|
|
|
|
|
"PermissionsListResponse",
|
2025-12-21 22:26:33 -08:00
|
|
|
# Podcast schemas
|
|
|
|
|
"PodcastBase",
|
|
|
|
|
"PodcastCreate",
|
|
|
|
|
"PodcastRead",
|
|
|
|
|
"PodcastUpdate",
|
2026-02-05 17:55:21 +02:00
|
|
|
"RefreshTokenRequest",
|
2026-02-05 17:29:50 +02:00
|
|
|
"RefreshTokenResponse",
|
2026-02-11 17:55:52 +05:30
|
|
|
# Report schemas
|
|
|
|
|
"ReportBase",
|
|
|
|
|
"ReportContentRead",
|
2026-02-16 00:11:34 +05:30
|
|
|
"ReportContentUpdate",
|
2026-02-11 17:55:52 +05:30
|
|
|
"ReportRead",
|
2026-02-12 03:19:38 +05:30
|
|
|
"ReportVersionInfo",
|
2025-11-27 22:45:04 -08:00
|
|
|
"RoleCreate",
|
|
|
|
|
"RoleRead",
|
|
|
|
|
"RoleUpdate",
|
2025-07-24 14:43:48 -07:00
|
|
|
"SearchSourceConnectorBase",
|
|
|
|
|
"SearchSourceConnectorCreate",
|
|
|
|
|
"SearchSourceConnectorRead",
|
|
|
|
|
"SearchSourceConnectorUpdate",
|
2025-12-21 19:33:52 -08:00
|
|
|
# Search space schemas
|
2025-07-24 14:43:48 -07:00
|
|
|
"SearchSpaceBase",
|
|
|
|
|
"SearchSpaceCreate",
|
|
|
|
|
"SearchSpaceRead",
|
|
|
|
|
"SearchSpaceUpdate",
|
2025-11-27 22:45:04 -08:00
|
|
|
"SearchSpaceWithStats",
|
2025-12-21 22:26:33 -08:00
|
|
|
"ThreadHistoryLoadResponse",
|
|
|
|
|
"ThreadListItem",
|
|
|
|
|
"ThreadListResponse",
|
|
|
|
|
"TimestampModel",
|
2025-12-21 19:33:52 -08:00
|
|
|
# User schemas
|
2025-07-24 14:43:48 -07:00
|
|
|
"UserCreate",
|
|
|
|
|
"UserRead",
|
2025-11-27 22:45:04 -08:00
|
|
|
"UserSearchSpaceAccess",
|
2025-07-24 14:43:48 -07:00
|
|
|
"UserUpdate",
|
2026-03-21 22:13:41 -07:00
|
|
|
# Video Presentation schemas
|
|
|
|
|
"VideoPresentationBase",
|
|
|
|
|
"VideoPresentationCreate",
|
|
|
|
|
"VideoPresentationRead",
|
|
|
|
|
"VideoPresentationUpdate",
|
2025-07-24 14:43:48 -07:00
|
|
|
]
|