mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
Complete AI-powered personal brand automation for Sami Assiri.\n\n7 agents: LinkedIn, Email, Social Media, WhatsApp, CV Optimizer, Content Strategist, Opportunity Scout.\nInfra: FastAPI + APScheduler + Docker + Ollama/Groq LLM + GitHub Pages landing page.\n83 files, ~10K lines. Cost: $0-5/month.
15 lines
279 B
Python
15 lines
279 B
Python
from .database import get_db, init_db
|
|
from .models import Base, Post, Email, Contact, AgentLog, ContentCalendar, Opportunity
|
|
|
|
__all__ = [
|
|
"get_db",
|
|
"init_db",
|
|
"Base",
|
|
"Post",
|
|
"Email",
|
|
"Contact",
|
|
"AgentLog",
|
|
"ContentCalendar",
|
|
"Opportunity",
|
|
]
|