Spaces:
Sleeping
Sleeping
File size: 11,268 Bytes
ae6d1e2 ed9275c ae6d1e2 ed9275c ae6d1e2 | 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 | import logging
from uuid import uuid4
from fastapi import FastAPI, UploadFile, File, Form, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse
from pydantic import BaseModel
from personas import get_persona
from services.gemini_service import generate_response
from services.stt_service import transcribe_audio
from services.tts_service import synthesize_speech, save_character, saved_characters
# Configure logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
)
logger = logging.getLogger(__name__)
# βββ FastAPI App βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(
title="Hikawi API β ΨΩΨ§ΩΩ",
description="Interactive Egyptian Oral Heritage Chatbot API",
version="1.0.0",
)
# CORS β allow everything for local hackathon demo
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# βββ In-Memory Conversation Store βββββββββββββββββββββββββββββββββββββββββββββ
# Key: session_id (UUID string)
# Value: list of {"role": "user"/"model", "parts": [{"text": "..."}]}
conversation_history: dict[str, list[dict]] = {}
# βββ Pydantic Models ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TextChatRequest(BaseModel):
text: str
session_id: str | None = None
class TextChatResponse(BaseModel):
response: str
session_id: str
class AudioChatResponse(BaseModel):
transcribed_text: str
response: str
session_id: str
class TTSRequest(BaseModel):
text: str
character_name: str | None = None
# βββ Endpoints βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/health")
async def health_check():
"""Health check endpoint."""
return {"status": "ok", "service": "hikawi"}
@app.post("/api/chat/text", response_model=TextChatResponse)
async def chat_text(request: TextChatRequest):
"""
Text chat with the Aswan regional persona.
Sends the user's text to Gemini 2.5 Flash with the Aswan persona
system prompt and returns a response in Sa'idi/Nubian dialect.
"""
try:
# Generate or use existing session ID
session_id = request.session_id or str(uuid4())
# Get Aswan persona
persona = get_persona("aswan")
# Get or create conversation history
history = conversation_history.setdefault(session_id, [])
# Generate response from Gemini
ai_response = generate_response(
user_text=request.text,
system_prompt=persona["system_prompt"],
history=history,
)
# Update conversation history
history.append({"role": "user", "parts": [{"text": request.text}]})
history.append({"role": "model", "parts": [{"text": ai_response}]})
logger.info(f"Text chat | session={session_id[:8]}... | user={request.text[:30]}...")
return TextChatResponse(response=ai_response, session_id=session_id)
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except RuntimeError as e:
raise HTTPException(status_code=500, detail=str(e))
except Exception as e:
logger.error(f"Unexpected error in chat_text: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@app.post("/api/stt")
async def speech_to_text(file: UploadFile = File(...)):
"""
Transcribe audio to text only (no AI response).
Returns the transcribed text for user review before sending.
"""
try:
audio_bytes = await file.read()
if not audio_bytes:
raise HTTPException(status_code=400, detail="Empty audio file")
filename = file.filename or "recording.webm"
transcribed_text = transcribe_audio(audio_bytes, filename)
if not transcribed_text.strip():
raise HTTPException(
status_code=400,
detail="Could not transcribe any text from the audio",
)
return {"text": transcribed_text.strip()}
except HTTPException:
raise
except Exception as e:
logger.error(f"STT error: {e}")
raise HTTPException(status_code=500, detail=f"Transcription failed: {e}")
@app.post("/api/chat/audio", response_model=AudioChatResponse)
async def chat_audio(
file: UploadFile = File(...),
session_id: str = Form(default=None),
):
"""
Audio chat with the Aswan regional persona.
Receives an audio file (WebM/OGG/WAV), transcribes it via Speechmatics,
then sends the transcribed text to Gemini for a persona response.
"""
try:
# Read audio bytes
audio_bytes = await file.read()
if not audio_bytes:
raise HTTPException(status_code=400, detail="Empty audio file")
# Transcribe audio to text
filename = file.filename or "recording.webm"
transcribed_text = transcribe_audio(audio_bytes, filename)
if not transcribed_text.strip():
raise HTTPException(
status_code=400,
detail="Could not transcribe any text from the audio",
)
# Generate or use existing session ID
session_id = session_id or str(uuid4())
# Get Aswan persona
persona = get_persona("aswan")
# Get or create conversation history
history = conversation_history.setdefault(session_id, [])
# Generate response from Gemini
ai_response = generate_response(
user_text=transcribed_text,
system_prompt=persona["system_prompt"],
history=history,
)
# Update conversation history
history.append({"role": "user", "parts": [{"text": transcribed_text}]})
history.append({"role": "model", "parts": [{"text": ai_response}]})
logger.info(
f"Audio chat | session={session_id[:8]}... | "
f"transcribed={transcribed_text[:30]}..."
)
return AudioChatResponse(
transcribed_text=transcribed_text,
response=ai_response,
session_id=session_id,
)
except HTTPException:
raise
except RuntimeError as e:
raise HTTPException(status_code=500, detail=str(e))
except Exception as e:
logger.error(f"Unexpected error in chat_audio: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@app.post("/api/tts")
async def text_to_speech(request: TTSRequest):
"""
Convert text to speech using Gradio TTS API.
Returns the generated audio file for playback in the browser.
"""
try:
# Call Gradio TTS API
filepath, error = synthesize_speech(
text=request.text,
character_name=request.character_name,
)
if error:
logger.error(f"TTS error: {error}")
raise HTTPException(status_code=500, detail=error)
# Return the audio file
return FileResponse(
filepath,
media_type="audio/wav",
headers={
"Content-Disposition": "inline",
"Cache-Control": "no-cache",
},
)
except HTTPException:
raise
except Exception as e:
logger.error(f"Unexpected error in TTS: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
# βββ Character Management ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/api/characters/add")
async def add_character(
char_name: str = Form(...),
ref_text: str = Form(...),
audio_file: UploadFile = File(...),
):
"""
Save a new voice character to the Gradio TTS model.
Requires: character name, reference audio clip, and the text spoken in that clip.
"""
try:
if not char_name.strip():
raise HTTPException(status_code=400, detail="Character name is required")
if not ref_text.strip():
raise HTTPException(status_code=400, detail="Reference text is required")
audio_bytes = await audio_file.read()
if not audio_bytes:
raise HTTPException(status_code=400, detail="Audio file is empty")
filename = audio_file.filename or "reference.wav"
# --- Save character permanently for lazy loading ---
import os
import json
char_dir = os.path.join("data", "characters")
os.makedirs(char_dir, exist_ok=True)
safe_char_name = char_name.strip().replace(" ", "_")
local_audio_path = os.path.join(char_dir, f"{safe_char_name}.webm")
with open(local_audio_path, "wb") as f:
f.write(audio_bytes)
registry_path = os.path.join(char_dir, "registry.json")
registry = {}
if os.path.exists(registry_path):
with open(registry_path, "r", encoding="utf-8") as f:
try:
registry = json.load(f)
except json.JSONDecodeError:
pass
registry[char_name.strip()] = {
"ref_text": ref_text.strip(),
"ref_audio_path": local_audio_path
}
with open(registry_path, "w", encoding="utf-8") as f:
json.dump(registry, f, ensure_ascii=False, indent=2)
# ---------------------------------------------------
message, error = save_character(
char_name=char_name.strip(),
audio_bytes=audio_bytes,
audio_filename=filename,
ref_text=ref_text.strip(),
)
if error:
logger.error(f"Save character error: {error}")
raise HTTPException(status_code=500, detail=error)
return {"message": message, "character_name": char_name.strip()}
except HTTPException:
raise
except Exception as e:
logger.error(f"Unexpected error saving character: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@app.get("/api/characters")
async def list_characters():
"""List all saved voice characters."""
return {"characters": saved_characters}
# βββ Run βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
import uvicorn
uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True)
|