open-notebook / commands /__init__.py
ffreemt
1st try
3793f68
Raw
History Blame Contribute Delete
675 Bytes
"""Surreal-commands integration for Open Notebook"""
from .embedding_commands import (
embed_insight_command,
embed_note_command,
embed_source_command,
rebuild_embeddings_command,
)
from .example_commands import analyze_data_command, process_text_command
from .podcast_commands import generate_podcast_command
from .source_commands import process_source_command
__all__ = [
# Embedding commands
"embed_note_command",
"embed_insight_command",
"embed_source_command",
"rebuild_embeddings_command",
# Other commands
"generate_podcast_command",
"process_source_command",
"process_text_command",
"analyze_data_command",
]