Creates the API layer for Open Notebook Creates a services API gateway for the Streamlit front-end Migrates the SurrealDB SDK to the official one Change all database calls to async New podcast framework supporting multiple speaker configurations Implement the surreal-commands library for async processing Improve docker image and docker-compose configurations
9 lines
252 B
Python
9 lines
252 B
Python
from pages.components.note_panel import note_panel
|
|
from pages.components.source_insight import source_insight_panel
|
|
from pages.components.source_panel import source_panel
|
|
|
|
__all__ = [
|
|
"note_panel",
|
|
"source_insight_panel",
|
|
"source_panel",
|
|
]
|