newpress-ai / src /__init__.py
Tom
feat: add progress indicators with generator pattern
1e2d815
"""NewPress AI - Johnny Harris Script Assistant"""
from .vectorstore import TranscriptVectorStore, create_vectorstore
from .llm_client import InferenceProviderClient, create_llm_client
from .prompts import (
TOPIC_SEARCH_SYSTEM_PROMPT,
SCRIPT_SYSTEM_PROMPT,
SCRIPT_PROMPT_TEMPLATE,
get_script_prompt
)
__all__ = [
"TranscriptVectorStore",
"create_vectorstore",
"InferenceProviderClient",
"create_llm_client",
"TOPIC_SEARCH_SYSTEM_PROMPT",
"SCRIPT_SYSTEM_PROMPT",
"SCRIPT_PROMPT_TEMPLATE",
"get_script_prompt"
]