open-notebook/commands/__init__.py
Luis Novo d7b0fff954
Api podcast migration (#93)
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
2025-07-17 08:36:11 -03:00

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",
]