teng-lin--notebooklm-py
09e9f3545f
Test / Code Quality (push) Has been cancelled
Test / Test (macos-latest, Python 3.10) (push) Has been cancelled
Test / Test (macos-latest, Python 3.11) (push) Has been cancelled
Test / Test (macos-latest, Python 3.12) (push) Has been cancelled
Test / Test (macos-latest, Python 3.13) (push) Has been cancelled
Test / Test (macos-latest, Python 3.14) (push) Has been cancelled
Test / Test (ubuntu-latest, Python 3.10) (push) Has been cancelled
Test / Test (ubuntu-latest, Python 3.11) (push) Has been cancelled
Test / Test (ubuntu-latest, Python 3.12) (push) Has been cancelled
Test / Test (ubuntu-latest, Python 3.13) (push) Has been cancelled
Test / Test (ubuntu-latest, Python 3.14) (push) Has been cancelled
Test / Test (windows-latest, Python 3.10) (push) Has been cancelled
Test / Test (windows-latest, Python 3.11) (push) Has been cancelled
Test / Test (windows-latest, Python 3.12) (push) Has been cancelled
Test / Test (windows-latest, Python 3.13) (push) Has been cancelled
Test / Test (windows-latest, Python 3.14) (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
dependency-audit / pip-audit (push) Has been cancelled
65 行
1.5 KiB
Python
65 行
1.5 KiB
Python
"""Private positional-RPC-row adapter package.
|
|
|
|
Cohesive cluster promoted from the former flat ``_row_adapters_*.py`` modules (issue #1328).
|
|
Re-exports the typed row views; importers may also reach submodules directly
|
|
(``from .._row_adapters.sources import SourceRow``).
|
|
"""
|
|
|
|
from . import artifacts, chat, labels, notebooks, notes, research, sources
|
|
from .artifacts import ArtifactRow, ReportSuggestionRow
|
|
from .chat import (
|
|
AnswerRow,
|
|
CitationDetail,
|
|
CitationRow,
|
|
ConversationTurnRow,
|
|
ErrorPayloadRow,
|
|
PassageRow,
|
|
StreamFrameRow,
|
|
TextLeafRow,
|
|
unwrap_conversation_turns,
|
|
)
|
|
from .labels import LabelRow
|
|
from .notes import NoteRow
|
|
from .research import (
|
|
ImportedSourceRow,
|
|
ResearchResultRow,
|
|
ResearchStartRow,
|
|
ResearchTaskInfoRow,
|
|
ResearchTaskRow,
|
|
unwrap_import_rows,
|
|
unwrap_poll_tasks,
|
|
)
|
|
from .sources import SourceRow, SourceRowShape
|
|
|
|
__all__ = [
|
|
"artifacts",
|
|
"chat",
|
|
"labels",
|
|
"notebooks",
|
|
"notes",
|
|
"research",
|
|
"sources",
|
|
"AnswerRow",
|
|
"ArtifactRow",
|
|
"CitationDetail",
|
|
"CitationRow",
|
|
"ConversationTurnRow",
|
|
"ErrorPayloadRow",
|
|
"ImportedSourceRow",
|
|
"LabelRow",
|
|
"NoteRow",
|
|
"PassageRow",
|
|
"ReportSuggestionRow",
|
|
"ResearchResultRow",
|
|
"ResearchStartRow",
|
|
"ResearchTaskInfoRow",
|
|
"ResearchTaskRow",
|
|
"SourceRow",
|
|
"SourceRowShape",
|
|
"StreamFrameRow",
|
|
"TextLeafRow",
|
|
"unwrap_conversation_turns",
|
|
"unwrap_import_rows",
|
|
"unwrap_poll_tasks",
|
|
]
|