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
10 lines
285 B
Python
10 lines
285 B
Python
"""Surreal-commands integration for Open Notebook"""
|
|
|
|
from .example_commands import analyze_data_command, process_text_command
|
|
from .podcast_commands import generate_podcast_command
|
|
|
|
__all__ = [
|
|
"generate_podcast_command",
|
|
"process_text_command",
|
|
"analyze_data_command",
|
|
]
|