File size: 22,472 Bytes
4e10023 83df634 97bafdb 255b6fc 83df634 255b6fc 68f41f4 4e10023 c6f7b75 4e10023 c6f7b75 4e10023 4599528 4e10023 4599528 4e10023 68f41f4 04d695c 68f41f4 4e10023 68f41f4 e46cec3 68f41f4 4e10023 68f41f4 4e10023 68f41f4 4e10023 68f41f4 4e10023 68f41f4 4e10023 84eb396 4e10023 68f41f4 4e10023 09c9042 68f41f4 09c9042 68f41f4 09c9042 68f41f4 09c9042 2cd680b |
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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
"""
FastAPI Backend AI Service converted from Gradio app
Provides OpenAI-compatible chat completion endpoints
"""
import os
import warnings
# Suppress warnings before any other imports
warnings.filterwarnings("ignore", category=FutureWarning, module="transformers")
warnings.filterwarnings("ignore", message=".*slow image processor.*")
warnings.filterwarnings("ignore", message=".*rope_scaling.*")
# Direct Hugging Face caches to a writable folder under /tmp (use only HF_HOME, TRANSFORMERS_CACHE is deprecated)
os.environ.setdefault("HF_HOME", "/tmp/.cache/huggingface")
# Suppress advisory warnings from transformers (including deprecation warnings)
os.environ["TRANSFORMERS_NO_ADVISORY_WARNINGS"] = "1"
# Define Hugging Face auth token from environment
hf_token = os.environ.get("HF_TOKEN")
import asyncio
import logging
import time
import json
from contextlib import asynccontextmanager
from typing import List, Dict, Any, Optional, AsyncGenerator, Union
from fastapi import FastAPI, HTTPException, Depends, Request
from fastapi.responses import StreamingResponse, JSONResponse
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel, Field, field_validator
from huggingface_hub import InferenceClient
import uvicorn
import requests
from PIL import Image
# Transformers imports (now required)
try:
from transformers import pipeline, AutoTokenizer # type: ignore
transformers_available = True
except ImportError:
transformers_available = False
pipeline = None
AutoTokenizer = None
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Pydantic models for multimodal content
class TextContent(BaseModel):
type: str = Field(default="text", description="Content type")
text: str = Field(..., description="Text content")
@field_validator('type')
@classmethod
def validate_type(cls, v: str) -> str:
if v != "text":
raise ValueError("Type must be 'text'")
return v
class ImageContent(BaseModel):
type: str = Field(default="image", description="Content type")
url: str = Field(..., description="Image URL")
@field_validator('type')
@classmethod
def validate_type(cls, v: str) -> str:
if v != "image":
raise ValueError("Type must be 'image'")
return v
# Pydantic models for OpenAI-compatible API
class ChatMessage(BaseModel):
role: str = Field(..., description="The role of the message author")
content: Union[str, List[Union[TextContent, ImageContent]]] = Field(..., description="The content of the message - either string or list of content items")
@field_validator('role')
@classmethod
def validate_role(cls, v: str) -> str:
if v not in ["system", "user", "assistant"]:
raise ValueError("Role must be one of: system, user, assistant")
return v
class ChatCompletionRequest(BaseModel):
model: str = Field(default="unsloth/DeepSeek-R1-0528-Qwen3-8B-GGUF", description="The model to use for completion")
messages: List[ChatMessage] = Field(..., description="List of messages in the conversation")
max_tokens: Optional[int] = Field(default=512, ge=1, le=2048, description="Maximum tokens to generate")
temperature: Optional[float] = Field(default=0.7, ge=0.0, le=2.0, description="Sampling temperature")
stream: Optional[bool] = Field(default=False, description="Whether to stream responses")
top_p: Optional[float] = Field(default=0.95, ge=0.0, le=1.0, description="Top-p sampling")
class ChatCompletionChoice(BaseModel):
index: int
message: ChatMessage
finish_reason: str
class ChatCompletionResponse(BaseModel):
id: str
object: str = "chat.completion"
created: int
model: str
choices: List[ChatCompletionChoice]
class ChatCompletionChunk(BaseModel):
id: str
object: str = "chat.completion.chunk"
created: int
model: str
choices: List[Dict[str, Any]]
class HealthResponse(BaseModel):
status: str
model: str
version: str
class ModelInfo(BaseModel):
id: str
object: str = "model"
created: int
owned_by: str = "huggingface"
class ModelsResponse(BaseModel):
object: str = "list"
data: List[ModelInfo]
class CompletionRequest(BaseModel):
prompt: str = Field(..., description="The prompt to complete")
max_tokens: Optional[int] = Field(default=512, ge=1, le=2048)
temperature: Optional[float] = Field(default=0.7, ge=0.0, le=2.0)
# Global variables for model management
inference_client: Optional[InferenceClient] = None
image_text_pipeline = None # type: ignore
current_model = "unsloth/DeepSeek-R1-0528-Qwen3-8B-GGUF"
vision_model = "Salesforce/blip-image-captioning-base" # Working model for image captioning
tokenizer = None
# Image processing utilities
async def download_image(url: str) -> Image.Image:
"""Download and process image from URL"""
try:
response = requests.get(url, timeout=10)
response.raise_for_status()
image = Image.open(requests.compat.BytesIO(response.content)) # type: ignore
return image
except Exception as e:
logger.error(f"Failed to download image from {url}: {e}")
raise HTTPException(status_code=400, detail=f"Failed to download image: {str(e)}")
def extract_text_and_images(content: Union[str, List[Any]]) -> tuple[str, List[str]]:
"""Extract text and image URLs from message content"""
if isinstance(content, str):
return content, []
text_parts: List[str] = []
image_urls: List[str] = []
for item in content:
if hasattr(item, 'type'):
if item.type == "text" and hasattr(item, 'text'):
text_parts.append(str(item.text))
elif item.type == "image" and hasattr(item, 'url'):
image_urls.append(str(item.url))
return " ".join(text_parts), image_urls
def has_images(messages: List[ChatMessage]) -> bool:
"""Check if any messages contain images"""
for message in messages:
if isinstance(message.content, list):
for item in message.content:
if hasattr(item, 'type') and item.type == "image":
return True
return False
@asynccontextmanager
async def lifespan(app: FastAPI):
"""Application lifespan manager for startup and shutdown events"""
global inference_client, tokenizer, image_text_pipeline
# Startup
logger.info("๐ Starting AI Backend Service...")
try:
# Initialize HuggingFace Inference Client for text generation
inference_client = InferenceClient(model=current_model)
logger.info(f"โ
Initialized inference client with model: {current_model}")
# Initialize image-text-to-text pipeline
if transformers_available and pipeline:
try:
logger.info(f"๐ผ๏ธ Initializing image captioning pipeline with model: {vision_model}")
image_text_pipeline = pipeline("image-to-text", model=vision_model) # Use image-to-text task
logger.info("โ
Image captioning pipeline loaded successfully")
except Exception as e:
logger.warning(f"โ ๏ธ Could not load image captioning pipeline: {e}")
image_text_pipeline = None
else:
logger.warning("โ ๏ธ Transformers not available, image processing disabled")
image_text_pipeline = None
# Initialize tokenizer for better text handling
if transformers_available and AutoTokenizer:
try:
# Load tokenizer, using auth token if provided
if hf_token:
tokenizer = AutoTokenizer.from_pretrained(
current_model,
token=hf_token
) # type: ignore
else:
tokenizer = AutoTokenizer.from_pretrained(
current_model
) # type: ignore
logger.info("โ
Tokenizer loaded successfully")
except Exception as e:
logger.warning(f"โ ๏ธ Could not load tokenizer: {e}")
tokenizer = None
else:
logger.info("โ ๏ธ Tokenizer initialization skipped")
except Exception as e:
logger.error(f"โ Failed to initialize inference client: {e}")
raise RuntimeError(f"Service initialization failed: {e}")
yield
# Shutdown
logger.info("๐ Shutting down AI Backend Service...")
inference_client = None
tokenizer = None
image_text_pipeline = None
# Initialize FastAPI app
app = FastAPI(
title="AI Backend Service",
description="OpenAI-compatible chat completion API powered by HuggingFace",
version="1.0.0",
lifespan=lifespan
)
# Add CORS middleware
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Configure appropriately for production
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
def get_inference_client() -> InferenceClient:
"""Dependency to get the inference client"""
if inference_client is None:
raise HTTPException(status_code=503, detail="Service not ready - inference client not initialized")
return inference_client
def convert_messages_to_prompt(messages: List[ChatMessage]) -> str:
"""Convert OpenAI messages format to a single prompt string"""
prompt_parts: List[str] = []
for message in messages:
role = message.role
# Extract text content (handle both string and list formats)
if isinstance(message.content, str):
content = message.content
else:
content, _ = extract_text_and_images(message.content)
if role == "system":
prompt_parts.append(f"System: {content}")
elif role == "user":
prompt_parts.append(f"Human: {content}")
elif role == "assistant":
prompt_parts.append(f"Assistant: {content}")
# Add assistant prompt to continue
prompt_parts.append("Assistant:")
return "\n".join(prompt_parts)
async def generate_multimodal_response(
messages: List[ChatMessage],
request: ChatCompletionRequest
) -> str:
"""Generate response using image-text-to-text pipeline for multimodal content"""
if not image_text_pipeline:
raise HTTPException(status_code=503, detail="Image processing not available - pipeline not initialized")
try:
# Find the last user message with images
last_user_message = None
for message in reversed(messages):
if message.role == "user" and isinstance(message.content, list):
last_user_message = message
break
if not last_user_message:
raise HTTPException(status_code=400, detail="No user message with images found")
# Extract text and images from the message
text_content, image_urls = extract_text_and_images(last_user_message.content)
if not image_urls:
raise HTTPException(status_code=400, detail="No images found in the message")
# Use the first image for now (could be extended to handle multiple images)
image_url = image_urls[0]
# Generate response using the image-to-text pipeline
logger.info(f"๐ผ๏ธ Processing image: {image_url}")
try:
# Use the pipeline directly with the image URL (no messages format needed for image-to-text)
result = await asyncio.to_thread(lambda: image_text_pipeline(image_url)) # type: ignore
# Handle response format from image-to-text pipeline
if result and hasattr(result, '__len__') and len(result) > 0: # type: ignore
first_result = result[0] # type: ignore
if hasattr(first_result, 'get'):
generated_text = first_result.get('generated_text', f'I can see an image at {image_url}.') # type: ignore
else:
generated_text = str(first_result)
# Combine with user's text question if provided
if text_content:
response = f"Looking at this image, I can see: {generated_text}. "
if "what" in text_content.lower() or "?" in text_content:
response += f"Regarding your question '{text_content}': Based on what I can see, this appears to be {generated_text.lower()}."
else:
response += f"You mentioned: {text_content}"
return response
else:
return f"I can see: {generated_text}"
else:
return f"I can see there's an image at {image_url}, but cannot process it right now."
except Exception as pipeline_error:
logger.warning(f"Pipeline error: {pipeline_error}")
return f"I can see there's an image at {image_url}. The image appears to contain visual content that I'm having trouble processing right now."
except Exception as e:
logger.error(f"Error in multimodal generation: {e}")
return f"I'm having trouble processing the image. Error: {str(e)}"
def generate_response_safe(client: InferenceClient, prompt: str, max_tokens: int, temperature: float, top_p: float) -> str:
"""Safely generate response from the model with fallback methods"""
try:
# Method 1: Try text_generation with new parameters
response_text = client.text_generation(
prompt=prompt,
max_new_tokens=max_tokens,
temperature=temperature,
top_p=top_p,
return_full_text=False,
stop=["Human:", "System:"] # Use stop instead of stop_sequences
)
return response_text.strip() if response_text else "I apologize, but I couldn't generate a response."
except Exception as e:
logger.warning(f"text_generation failed: {e}")
# Method 2: Try with minimal parameters
try:
response_text = client.text_generation(
prompt=prompt,
max_new_tokens=max_tokens,
temperature=temperature,
return_full_text=False
)
return response_text.strip() if response_text else "I apologize, but I couldn't generate a response."
except Exception as e2:
logger.error(f"All generation methods failed: {e2}")
return "I apologize, but I'm having trouble generating a response right now. Please try again."
async def generate_streaming_response(
client: InferenceClient,
prompt: str,
request: ChatCompletionRequest
) -> AsyncGenerator[str, None]:
"""Generate streaming response from the model"""
request_id = f"chatcmpl-{int(time.time())}"
created = int(time.time())
try:
# Generate response using safe method
response_text = await asyncio.to_thread(
generate_response_safe,
client,
prompt,
request.max_tokens or 512,
request.temperature or 0.7,
request.top_p or 0.95
)
# Simulate streaming by yielding chunks of the response
words = response_text.split() if response_text else ["No", "response", "generated"]
for i, word in enumerate(words):
chunk = ChatCompletionChunk(
id=request_id,
created=created,
model=request.model,
choices=[{
"index": 0,
"delta": {"content": f" {word}" if i > 0 else word},
"finish_reason": None
}]
)
yield f"data: {chunk.model_dump_json()}\n\n"
await asyncio.sleep(0.05) # Small delay for better streaming effect
# Send final chunk
final_chunk = ChatCompletionChunk(
id=request_id,
created=created,
model=request.model,
choices=[{
"index": 0,
"delta": {},
"finish_reason": "stop"
}]
)
yield f"data: {final_chunk.model_dump_json()}\n\n"
yield "data: [DONE]\n\n"
except Exception as e:
logger.error(f"Error in streaming generation: {e}")
error_chunk: Dict[str, Any] = {
"id": request_id,
"object": "chat.completion.chunk",
"created": created,
"model": request.model,
"choices": [{
"index": 0,
"delta": {},
"finish_reason": "error"
}],
"error": str(e)
}
yield f"data: {json.dumps(error_chunk)}\n\n"
@app.get("/", response_class=JSONResponse)
async def root() -> Dict[str, Any]:
"""Root endpoint with service information"""
return {
"message": "AI Backend Service is running!",
"version": "1.0.0",
"endpoints": {
"health": "/health",
"models": "/v1/models",
"chat_completions": "/v1/chat/completions"
}
}
@app.get("/health", response_model=HealthResponse)
async def health_check():
"""Health check endpoint"""
global current_model
return HealthResponse(
status="healthy" if inference_client else "unhealthy",
model=current_model,
version="1.0.0"
)
@app.get("/v1/models", response_model=ModelsResponse)
async def list_models():
"""List available models (OpenAI-compatible)"""
models = [
ModelInfo(
id=current_model,
created=int(time.time()),
owned_by="huggingface"
)
]
# Add vision model if available
if image_text_pipeline:
models.append(
ModelInfo(
id=vision_model,
created=int(time.time()),
owned_by="huggingface"
)
)
return ModelsResponse(data=models)
# ...existing code...
@app.post("/v1/chat/completions", response_model=ChatCompletionResponse)
async def create_chat_completion(
request: ChatCompletionRequest,
client: InferenceClient = Depends(get_inference_client)
) -> ChatCompletionResponse:
"""Create a chat completion (OpenAI-compatible) with multimodal support."""
try:
if not request.messages:
raise HTTPException(status_code=400, detail="Messages cannot be empty")
is_multimodal = has_images(request.messages)
if is_multimodal:
if not image_text_pipeline:
raise HTTPException(status_code=503, detail="Image processing not available")
response_text = await generate_multimodal_response(request.messages, request)
else:
prompt = convert_messages_to_prompt(request.messages)
logger.info(f"Generated prompt: {prompt[:200]}...")
if request.stream:
return StreamingResponse(
generate_streaming_response(client, prompt, request),
media_type="text/plain",
headers={
"Cache-Control": "no-cache",
"Connection": "keep-alive",
"Content-Type": "text/plain; charset=utf-8"
}
) # type: ignore
response_text = await asyncio.to_thread(
generate_response_safe,
client,
prompt,
request.max_tokens or 512,
request.temperature or 0.7,
request.top_p or 0.95
)
response_text = response_text.strip() if response_text else "No response generated."
return ChatCompletionResponse(
id=f"chatcmpl-{int(time.time())}",
created=int(time.time()),
model=request.model,
choices=[ChatCompletionChoice(
index=0,
message=ChatMessage(role="assistant", content=response_text),
finish_reason="stop"
)]
)
except Exception as e:
logger.error(f"Error in chat completion: {e}")
raise HTTPException(status_code=500, detail=f"Internal server error: {str(e)}")
@app.post("/v1/completions")
async def create_completion(
request: CompletionRequest,
client: InferenceClient = Depends(get_inference_client)
) -> Dict[str, Any]:
"""Create a text completion (OpenAI-compatible)"""
try:
if not request.prompt:
raise HTTPException(status_code=400, detail="Prompt cannot be empty")
response_text = await asyncio.to_thread(
generate_response_safe,
client,
request.prompt,
request.max_tokens or 512,
request.temperature or 0.7,
0.95
)
return {
"id": f"cmpl-{int(time.time())}",
"object": "text_completion",
"created": int(time.time()),
"model": current_model,
"choices": [{
"text": response_text,
"index": 0,
"finish_reason": "stop"
}]
}
except Exception as e:
logger.error(f"Error in completion: {e}")
raise HTTPException(status_code=500, detail=f"Internal server error: {str(e)}")
@app.post("/api/response")
async def api_response(request: Request) -> JSONResponse:
"""Endpoint to receive and send responses via API."""
try:
data = await request.json()
message = data.get("message", "No message provided")
return JSONResponse(content={
"status": "success",
"received_message": message,
"response_message": f"You sent: {message}"
})
except Exception as e:
logger.error(f"Error processing API response: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
# Main entry point moved to the end for proper initialization
if __name__ == "__main__":
import uvicorn
uvicorn.run("backend_service:app", host="0.0.0.0", port=8000, reload=True)
|