Spaces:
Sleeping
Sleeping
File size: 14,125 Bytes
b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 0ea9398 b337403 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | import os
import asyncio
from fastapi import FastAPI, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from typing import Optional, List
import httpx
from datetime import datetime
import uuid
app = FastAPI(title="AI Team Chat API")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# βββββββββββββββββββββββββββββββββββββββββββββ
# ENV VARS (set in HuggingFace Space secrets)
# βββββββββββββββββββββββββββββββββββββββββββββ
GROQ_API_KEY = os.getenv("GROQ_API_KEY", "")
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY", "")
SUPABASE_URL = os.getenv("SUPABASE_URL", "")
SUPABASE_KEY = os.getenv("SUPABASE_KEY", "")
# βββββββββββββββββββββββββββββββββββββββββββββ
# SUPABASE β lazy init (never crashes startup)
# βββββββββββββββββββββββββββββββββββββββββββββ
_supabase_client = None
def get_supabase():
global _supabase_client
if _supabase_client is not None:
return _supabase_client
url = os.getenv("SUPABASE_URL", "")
key = os.getenv("SUPABASE_KEY", "")
if not url or not key:
return None
try:
from supabase import create_client
_supabase_client = create_client(url, key)
print("Supabase connected successfully.")
return _supabase_client
except Exception as e:
print(f"Supabase init error (non-fatal): {e}")
return None
# βββββββββββββββββββββββββββββββββββββββββββββ
# MODELS
# βββββββββββββββββββββββββββββββββββββββββββββ
class ChatRequest(BaseModel):
message: str
provider: str = "groq"
religion: Optional[str] = None
session_id: Optional[str] = None
conversation_history: Optional[List[dict]] = []
class AgentResponse(BaseModel):
agent: str
role: str
avatar: str
color: str
message: str
class ChatResponse(BaseModel):
session_id: str
agent_responses: List[AgentResponse]
summary: str
question: str
# βββββββββββββββββββββββββββββββββββββββββββββ
# LLM WRAPPER
# βββββββββββββββββββββββββββββββββββββββββββββ
async def call_llm(provider: str, system_prompt: str, user_message: str, temperature: float = 0.7) -> str:
if provider == "groq":
return await call_groq(system_prompt, user_message, temperature)
elif provider == "openai":
return await call_openai(system_prompt, user_message, temperature)
else:
raise HTTPException(status_code=400, detail=f"Unknown provider: {provider}")
async def call_groq(system_prompt: str, user_message: str, temperature: float) -> str:
key = os.getenv("GROQ_API_KEY", "")
if not key:
raise HTTPException(status_code=500, detail="GROQ_API_KEY not set in environment")
async with httpx.AsyncClient(timeout=30) as client:
response = await client.post(
"https://api.groq.com/openai/v1/chat/completions",
headers={
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
},
json={
"model": "llama-3.3-70b-versatile",
"messages": [
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_message},
],
"temperature": temperature,
"max_tokens": 300,
},
)
response.raise_for_status()
data = response.json()
return data["choices"][0]["message"]["content"].strip()
async def call_openai(system_prompt: str, user_message: str, temperature: float) -> str:
key = os.getenv("OPENAI_API_KEY", "")
if not key:
raise HTTPException(status_code=500, detail="OPENAI_API_KEY not set in environment")
async with httpx.AsyncClient(timeout=30) as client:
response = await client.post(
"https://api.openai.com/v1/chat/completions",
headers={
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
},
json={
"model": "gpt-4o-mini",
"messages": [
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_message},
],
"temperature": temperature,
"max_tokens": 300,
},
)
response.raise_for_status()
data = response.json()
return data["choices"][0]["message"]["content"].strip()
# βββββββββββββββββββββββββββββββββββββββββββββ
# AGENT DEFINITIONS
# βββββββββββββββββββββββββββββββββββββββββββββ
def get_agents(religion: Optional[str]) -> List[dict]:
spiritual_note = (
f"Base your guidance on {religion} principles and teachings. Be respectful and calm."
if religion and religion.lower() not in ["none", "prefer not to say", ""]
else "Provide neutral mindfulness and universal spiritual guidance. Avoid referencing any specific religion."
)
return [
{
"name": "Dr. Sarah",
"role": "Doctor",
"avatar": "π©Ί",
"color": "#4FC3F7",
"system_prompt": (
"You are Dr. Sarah, a careful and responsible medical advisor. "
"You DO NOT give diagnoses. You suggest possibilities carefully and always recommend "
"consulting a licensed physician for personal medical decisions. "
"Be concise, warm, and professional. Respond in 2-4 lines maximum. "
"Do not repeat what other experts would say."
),
},
{
"name": "Coach Marcus",
"role": "Fitness Coach",
"avatar": "πͺ",
"color": "#81C784",
"system_prompt": (
"You are Coach Marcus, an energetic and experienced fitness coach. "
"You focus on physical activity, movement, exercise routines, and safe training. "
"Be motivating, practical, and concise. Respond in 2-4 lines maximum. "
"Do not repeat what other experts would say."
),
},
{
"name": "Nina",
"role": "Nutritionist",
"avatar": "π₯",
"color": "#FFB74D",
"system_prompt": (
"You are Nina, a certified nutritionist specializing in diet, energy, and food science. "
"You focus on practical, evidence-based dietary guidance. "
"Be specific, helpful, and concise. Respond in 2-4 lines maximum. "
"Do not repeat what other experts would say."
),
},
{
"name": "Dr. Mia",
"role": "Mental Health Coach",
"avatar": "π§ ",
"color": "#CE93D8",
"system_prompt": (
"You are Dr. Mia, an empathetic and supportive mental health coach. "
"You help with emotional wellbeing, stress, mindset, and psychological patterns. "
"Be compassionate, grounding, and concise. Respond in 2-4 lines maximum. "
"Do not repeat what other experts would say."
),
},
{
"name": "Sage Aris",
"role": "Spiritual Coach",
"avatar": "β¨",
"color": "#F48FB1",
"system_prompt": (
f"You are Sage Aris, a gentle and insightful spiritual coach. "
f"{spiritual_note} "
f"Be calm, respectful, and uplifting. Respond in 2-4 lines maximum. "
f"Do not repeat what other experts would say."
),
},
]
COORDINATOR_SYSTEM_PROMPT = """You are the Coordinator of an expert AI wellness team consisting of a Doctor, Fitness Coach, Nutritionist, Mental Health Coach, and Spiritual Coach.
Your job:
1. Read all agent responses carefully
2. Write a SHORT summary of the key collective insights (2-3 sentences max)
3. Ask ONE clear, thoughtful, combined question to the user to gather more context
Rules:
- Do NOT repeat the agents' responses verbatim
- Keep it collaborative and warm
- The question should help the team give better advice next time
Output format (strictly follow this):
Summary: <your short summary here>
Question: <your single question here>"""
# βββββββββββββββββββββββββββββββββββββββββββββ
# SUPABASE HELPERS
# βββββββββββββββββββββββββββββββββββββββββββββ
async def save_to_supabase(session_id: str, user_message: str, agent_responses: list, summary: str, question: str):
db = get_supabase()
if not db:
return
try:
record = {
"session_id": session_id,
"user_message": user_message,
"agent_responses": agent_responses,
"summary": summary,
"question": question,
"created_at": datetime.utcnow().isoformat(),
}
db.table("chat_history").insert(record).execute()
except Exception as e:
print(f"Supabase save error (non-fatal): {e}")
async def get_session_history(session_id: str) -> list:
db = get_supabase()
if not db or not session_id:
return []
try:
result = (
db.table("chat_history")
.select("*")
.eq("session_id", session_id)
.order("created_at", desc=False)
.limit(20)
.execute()
)
return result.data or []
except Exception as e:
print(f"Supabase fetch error (non-fatal): {e}")
return []
# βββββββββββββββββββββββββββββββββββββββββββββ
# MAIN ENDPOINT
# βββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/chat", response_model=ChatResponse)
async def chat(request: ChatRequest):
session_id = request.session_id or str(uuid.uuid4())
agents = get_agents(request.religion)
# Build context from conversation history
history_context = ""
if request.conversation_history:
history_lines = []
for turn in request.conversation_history[-6:]:
history_lines.append(f"User: {turn.get('user', '')}")
if turn.get("question"):
history_lines.append(f"Team Question: {turn.get('question', '')}")
history_context = "\n\nPrevious conversation context:\n" + "\n".join(history_lines)
user_prompt = f"{history_context}\n\nUser's current message: {request.message}"
# ββ Step 1: Run all 5 agents in parallel ββ
async def run_agent(agent: dict) -> AgentResponse:
message = await call_llm(
provider=request.provider,
system_prompt=agent["system_prompt"],
user_message=user_prompt,
)
return AgentResponse(
agent=agent["name"],
role=agent["role"],
avatar=agent["avatar"],
color=agent["color"],
message=message,
)
agent_results: List[AgentResponse] = await asyncio.gather(*[run_agent(a) for a in agents])
# ββ Step 2: Run Coordinator ββ
all_responses_text = "\n\n".join(
[f"[{r.role} β {r.agent}]:\n{r.message}" for r in agent_results]
)
coordinator_user_prompt = (
f"User asked: \"{request.message}\"\n\n"
f"Agent responses:\n{all_responses_text}"
)
coordinator_raw = await call_llm(
provider=request.provider,
system_prompt=COORDINATOR_SYSTEM_PROMPT,
user_message=coordinator_user_prompt,
temperature=0.5,
)
# Parse coordinator output
summary = ""
question = ""
for line in coordinator_raw.splitlines():
if line.lower().startswith("summary:"):
summary = line[len("summary:"):].strip()
elif line.lower().startswith("question:"):
question = line[len("question:"):].strip()
if not summary:
summary = coordinator_raw
if not question:
question = "Can you share more details so the team can help you better?"
# ββ Step 3: Save to Supabase (non-blocking) ββ
agent_data = [r.dict() for r in agent_results]
asyncio.create_task(
save_to_supabase(session_id, request.message, agent_data, summary, question)
)
return ChatResponse(
session_id=session_id,
agent_responses=agent_results,
summary=summary,
question=question,
)
@app.get("/history/{session_id}")
async def get_history(session_id: str):
history = await get_session_history(session_id)
return {"session_id": session_id, "history": history}
@app.get("/health")
async def health():
db = get_supabase()
return {
"status": "ok",
"groq_configured": bool(os.getenv("GROQ_API_KEY")),
"openai_configured": bool(os.getenv("OPENAI_API_KEY")),
"supabase_configured": bool(db),
} |