mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-30 03:16:25 +02:00
feat: add folder management features including creation, deletion, and organization of documents within folders
This commit is contained in:
parent
95bb522220
commit
685ad0c02d
41 changed files with 7475 additions and 4330 deletions
|
|
@ -22,6 +22,16 @@ from .documents import (
|
|||
ExtensionDocumentMetadata,
|
||||
PaginatedResponse,
|
||||
)
|
||||
from .folders import (
|
||||
BulkDocumentMove,
|
||||
DocumentMove,
|
||||
FolderBreadcrumb,
|
||||
FolderCreate,
|
||||
FolderMove,
|
||||
FolderRead,
|
||||
FolderReorder,
|
||||
FolderUpdate,
|
||||
)
|
||||
from .google_drive import DriveItem, GoogleDriveIndexingOptions, GoogleDriveIndexRequest
|
||||
from .image_generation import (
|
||||
GlobalImageGenConfigRead,
|
||||
|
|
@ -109,6 +119,8 @@ from .video_presentations import (
|
|||
)
|
||||
|
||||
__all__ = [
|
||||
# Folder schemas
|
||||
"BulkDocumentMove",
|
||||
# Chat schemas (assistant-ui integration)
|
||||
"ChatMessage",
|
||||
# Chunk schemas
|
||||
|
|
@ -119,6 +131,7 @@ __all__ = [
|
|||
"DefaultSystemInstructionsResponse",
|
||||
# Document schemas
|
||||
"DocumentBase",
|
||||
"DocumentMove",
|
||||
"DocumentRead",
|
||||
"DocumentStatusBatchResponse",
|
||||
"DocumentStatusItemRead",
|
||||
|
|
@ -132,6 +145,12 @@ __all__ = [
|
|||
"DriveItem",
|
||||
"ExtensionDocumentContent",
|
||||
"ExtensionDocumentMetadata",
|
||||
"FolderBreadcrumb",
|
||||
"FolderCreate",
|
||||
"FolderMove",
|
||||
"FolderRead",
|
||||
"FolderReorder",
|
||||
"FolderUpdate",
|
||||
"GlobalImageGenConfigRead",
|
||||
"GlobalNewLLMConfigRead",
|
||||
"GoogleDriveIndexRequest",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue