mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09: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.
17 lines
358 B
Python
17 lines
358 B
Python
"""Health check endpoint."""
|
|
|
|
from fastapi import APIRouter
|
|
from datetime import datetime, timezone
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/health")
|
|
async def health_check():
|
|
return {
|
|
"status": "healthy",
|
|
"service": "Personal Brand Engine",
|
|
"owner": "Sami Assiri",
|
|
"timestamp": datetime.now(timezone.utc).isoformat(),
|
|
}
|