File size: 17,693 Bytes
499c907 | 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 | #!/usr/bin/env python3
"""
BuildwellAI Model V2 - Streaming API Server
A FastAPI-based streaming inference server for the fine-tuned Qwen3-14B model.
Supports:
- Streaming text generation
- Tool calling with MCP integration
- Multi-mode responses (direct, thinking, tool calling)
- OpenAI-compatible API
Usage:
python3 streaming_api.py --model ./output/buildwellai-qwen3-14b-v2/merged --port 8080
"""
import os
import sys
import json
import torch
import asyncio
import argparse
import uvicorn
from pathlib import Path
from typing import Optional, List, Dict, Any, AsyncGenerator
from datetime import datetime
from threading import Thread
from fastapi import FastAPI, HTTPException, Request
from fastapi.responses import StreamingResponse, JSONResponse
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel, Field
# ============================================================================
# CONFIGURATION
# ============================================================================
DEFAULT_MODEL_PATH = "./output/buildwellai-qwen3-14b-v2/merged"
DEFAULT_PORT = 8080
MAX_TOKENS = 4096
DEFAULT_TEMPERATURE = 0.7
DEFAULT_TOP_P = 0.9
# MCP Tools available for the model
MCP_TOOLS = {
"universalMCP": {
"type": "function",
"function": {
"name": "universalMCP",
"description": "Call any BuildwellAI MCP server for specialized calculations",
"parameters": {
"type": "object",
"properties": {
"mcpServer": {
"type": "string",
"description": "Name of the MCP server (e.g., 'psi-thermal-bridge', 'sap10', 'breeam')"
},
"toolName": {
"type": "string",
"description": "Name of the tool to call on the MCP server"
},
"arguments": {
"type": "object",
"description": "Arguments to pass to the tool"
}
},
"required": ["mcpServer", "toolName", "arguments"]
}
}
},
"webSearch": {
"type": "function",
"function": {
"name": "webSearch",
"description": "Search the web for construction-related information",
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string", "description": "Search query"}
},
"required": ["query"]
}
}
},
"retrieveDiagrams": {
"type": "function",
"function": {
"name": "retrieveDiagrams",
"description": "Search construction diagrams database",
"parameters": {
"type": "object",
"properties": {
"query": {"type": "string"},
"category": {
"type": "string",
"enum": ["structural", "electrical", "plumbing", "hvac", "site", "general"]
}
},
"required": ["query"]
}
}
}
}
# ============================================================================
# PYDANTIC MODELS
# ============================================================================
class Message(BaseModel):
role: str
content: Optional[str] = ""
tool_calls: Optional[List[Dict]] = None
tool_call_id: Optional[str] = None
class ChatRequest(BaseModel):
model: str = "buildwellai-qwen3-14b-v2"
messages: List[Message]
temperature: float = DEFAULT_TEMPERATURE
top_p: float = DEFAULT_TOP_P
max_tokens: int = MAX_TOKENS
stream: bool = True
tools: Optional[List[Dict]] = None
tool_choice: Optional[str] = "auto"
class ChatCompletionChoice(BaseModel):
index: int = 0
message: Dict
finish_reason: str = "stop"
class ChatCompletionResponse(BaseModel):
id: str
object: str = "chat.completion"
created: int
model: str
choices: List[ChatCompletionChoice]
usage: Dict = {"prompt_tokens": 0, "completion_tokens": 0, "total_tokens": 0}
# ============================================================================
# MODEL LOADING
# ============================================================================
class ModelManager:
def __init__(self):
self.model = None
self.tokenizer = None
self.model_path = None
self.device = None
def load(self, model_path: str):
"""Load the fine-tuned model."""
from transformers import AutoModelForCausalLM, AutoTokenizer
print(f"Loading model from: {model_path}")
self.tokenizer = AutoTokenizer.from_pretrained(
model_path,
trust_remote_code=True
)
if self.tokenizer.pad_token is None:
self.tokenizer.pad_token = self.tokenizer.eos_token
self.model = AutoModelForCausalLM.from_pretrained(
model_path,
torch_dtype=torch.bfloat16 if torch.cuda.is_bf16_supported() else torch.float16,
device_map="auto",
trust_remote_code=True,
)
self.model.eval()
self.model_path = model_path
self.device = next(self.model.parameters()).device
print(f"Model loaded on: {self.device}")
return True
def is_loaded(self) -> bool:
return self.model is not None
model_manager = ModelManager()
# ============================================================================
# STREAMING GENERATION
# ============================================================================
async def generate_stream(
messages: List[Message],
temperature: float = DEFAULT_TEMPERATURE,
top_p: float = DEFAULT_TOP_P,
max_tokens: int = MAX_TOKENS,
tools: Optional[List[Dict]] = None
) -> AsyncGenerator[str, None]:
"""Generate streaming response."""
from transformers import TextIteratorStreamer
if not model_manager.is_loaded():
raise HTTPException(status_code=503, detail="Model not loaded")
# Convert messages to dict format
formatted_messages = []
for msg in messages:
m = {"role": msg.role, "content": msg.content or ""}
formatted_messages.append(m)
# Add tools to system message if provided
if tools:
tool_desc = json.dumps(tools, indent=2)
for i, msg in enumerate(formatted_messages):
if msg["role"] == "system":
formatted_messages[i]["content"] += f"\n\nAvailable Tools:\n{tool_desc}"
break
else:
formatted_messages.insert(0, {
"role": "system",
"content": f"You are BuildwellAI. Available Tools:\n{tool_desc}"
})
# Apply chat template
text = model_manager.tokenizer.apply_chat_template(
formatted_messages,
tokenize=False,
add_generation_prompt=True
)
# Tokenize
inputs = model_manager.tokenizer(text, return_tensors="pt").to(model_manager.device)
# Setup streamer
streamer = TextIteratorStreamer(
model_manager.tokenizer,
skip_prompt=True,
skip_special_tokens=True
)
# Generation config
generation_kwargs = {
**inputs,
"max_new_tokens": max_tokens,
"temperature": temperature if temperature > 0 else 0.01,
"top_p": top_p,
"top_k": 50,
"do_sample": temperature > 0,
"streamer": streamer,
"pad_token_id": model_manager.tokenizer.pad_token_id,
"eos_token_id": model_manager.tokenizer.eos_token_id,
}
# Start generation in background
thread = Thread(target=model_manager.model.generate, kwargs=generation_kwargs)
thread.start()
# Stream tokens
completion_id = f"chatcmpl-{datetime.now().strftime('%Y%m%d%H%M%S')}"
full_response = ""
for token_text in streamer:
full_response += token_text
# SSE format for OpenAI compatibility
chunk = {
"id": completion_id,
"object": "chat.completion.chunk",
"created": int(datetime.now().timestamp()),
"model": "buildwellai-qwen3-14b-v2",
"choices": [{
"index": 0,
"delta": {"content": token_text},
"finish_reason": None
}]
}
yield f"data: {json.dumps(chunk)}\n\n"
# Final chunk
final_chunk = {
"id": completion_id,
"object": "chat.completion.chunk",
"created": int(datetime.now().timestamp()),
"model": "buildwellai-qwen3-14b-v2",
"choices": [{
"index": 0,
"delta": {},
"finish_reason": "stop"
}]
}
yield f"data: {json.dumps(final_chunk)}\n\n"
yield "data: [DONE]\n\n"
thread.join()
def generate_sync(
messages: List[Message],
temperature: float = DEFAULT_TEMPERATURE,
top_p: float = DEFAULT_TOP_P,
max_tokens: int = MAX_TOKENS,
tools: Optional[List[Dict]] = None
) -> str:
"""Generate non-streaming response."""
if not model_manager.is_loaded():
raise HTTPException(status_code=503, detail="Model not loaded")
# Convert messages
formatted_messages = []
for msg in messages:
m = {"role": msg.role, "content": msg.content or ""}
formatted_messages.append(m)
# Add tools
if tools:
tool_desc = json.dumps(tools, indent=2)
for i, msg in enumerate(formatted_messages):
if msg["role"] == "system":
formatted_messages[i]["content"] += f"\n\nAvailable Tools:\n{tool_desc}"
break
# Apply template
text = model_manager.tokenizer.apply_chat_template(
formatted_messages,
tokenize=False,
add_generation_prompt=True
)
# Generate
inputs = model_manager.tokenizer(text, return_tensors="pt").to(model_manager.device)
with torch.no_grad():
outputs = model_manager.model.generate(
**inputs,
max_new_tokens=max_tokens,
temperature=temperature if temperature > 0 else 0.01,
top_p=top_p,
do_sample=temperature > 0,
pad_token_id=model_manager.tokenizer.pad_token_id,
eos_token_id=model_manager.tokenizer.eos_token_id,
)
response = model_manager.tokenizer.decode(
outputs[0][inputs.input_ids.shape[1]:],
skip_special_tokens=True
)
return response
# ============================================================================
# FASTAPI APP
# ============================================================================
app = FastAPI(
title="BuildwellAI Streaming API",
description="Streaming inference API for BuildwellAI Qwen3-14B-V2",
version="2.0.0"
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
async def root():
return {
"service": "BuildwellAI Streaming API",
"version": "2.0.0",
"model": model_manager.model_path,
"status": "ready" if model_manager.is_loaded() else "loading"
}
@app.get("/health")
async def health():
return {
"status": "healthy" if model_manager.is_loaded() else "loading",
"model_loaded": model_manager.is_loaded(),
"device": str(model_manager.device) if model_manager.device else None
}
@app.get("/v1/models")
async def list_models():
"""OpenAI-compatible models endpoint."""
return {
"object": "list",
"data": [{
"id": "buildwellai-qwen3-14b-v2",
"object": "model",
"created": int(datetime.now().timestamp()),
"owned_by": "buildwellai"
}]
}
@app.post("/v1/chat/completions")
async def chat_completions(request: ChatRequest):
"""OpenAI-compatible chat completions endpoint."""
if not model_manager.is_loaded():
raise HTTPException(status_code=503, detail="Model not loaded")
# Use MCP tools if none provided
tools = request.tools or list(MCP_TOOLS.values())
if request.stream:
return StreamingResponse(
generate_stream(
messages=request.messages,
temperature=request.temperature,
top_p=request.top_p,
max_tokens=request.max_tokens,
tools=tools
),
media_type="text/event-stream"
)
else:
response = generate_sync(
messages=request.messages,
temperature=request.temperature,
top_p=request.top_p,
max_tokens=request.max_tokens,
tools=tools
)
return ChatCompletionResponse(
id=f"chatcmpl-{datetime.now().strftime('%Y%m%d%H%M%S')}",
created=int(datetime.now().timestamp()),
model=request.model,
choices=[ChatCompletionChoice(
message={"role": "assistant", "content": response},
finish_reason="stop"
)]
)
@app.post("/chat")
async def simple_chat(request: Request):
"""Simple chat endpoint for direct usage."""
data = await request.json()
messages = [Message(**m) for m in data.get("messages", [])]
stream = data.get("stream", True)
temperature = data.get("temperature", DEFAULT_TEMPERATURE)
max_tokens = data.get("max_tokens", MAX_TOKENS)
if stream:
return StreamingResponse(
generate_stream(messages, temperature=temperature, max_tokens=max_tokens),
media_type="text/event-stream"
)
else:
response = generate_sync(messages, temperature=temperature, max_tokens=max_tokens)
return {"response": response}
# ============================================================================
# INTERACTIVE CLI
# ============================================================================
def interactive_cli():
"""Interactive CLI for testing."""
from transformers import TextIteratorStreamer
print("\n" + "=" * 60)
print("BuildwellAI Interactive Chat")
print("=" * 60)
print("Commands: /tools (toggle), /clear, /quit")
print("=" * 60 + "\n")
messages = [
{"role": "system", "content": "You are BuildwellAI, an expert UK construction assistant."}
]
use_tools = False
while True:
try:
user_input = input("\n👤 You: ").strip()
if not user_input:
continue
if user_input == "/quit":
print("Goodbye!")
break
elif user_input == "/clear":
messages = [messages[0]]
print("✓ Cleared")
continue
elif user_input == "/tools":
use_tools = not use_tools
print(f"✓ Tools {'enabled' if use_tools else 'disabled'}")
continue
messages.append({"role": "user", "content": user_input})
# Generate
formatted = model_manager.tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
inputs = model_manager.tokenizer(formatted, return_tensors="pt").to(model_manager.device)
streamer = TextIteratorStreamer(
model_manager.tokenizer,
skip_prompt=True,
skip_special_tokens=True
)
thread = Thread(
target=model_manager.model.generate,
kwargs={
**inputs,
"max_new_tokens": 1024,
"temperature": 0.7,
"do_sample": True,
"streamer": streamer,
}
)
thread.start()
print("\n🤖 Assistant: ", end="", flush=True)
response = ""
for token in streamer:
print(token, end="", flush=True)
response += token
print()
messages.append({"role": "assistant", "content": response})
thread.join()
except KeyboardInterrupt:
print("\n\nGoodbye!")
break
except Exception as e:
print(f"\n❌ Error: {e}")
# ============================================================================
# MAIN
# ============================================================================
def main():
parser = argparse.ArgumentParser(description="BuildwellAI Streaming API")
parser.add_argument("--model", type=str, default=DEFAULT_MODEL_PATH,
help="Path to fine-tuned model")
parser.add_argument("--port", type=int, default=DEFAULT_PORT,
help="Server port")
parser.add_argument("--host", type=str, default="0.0.0.0",
help="Server host")
parser.add_argument("--cli", action="store_true",
help="Run interactive CLI instead of server")
args = parser.parse_args()
# Load model
if not model_manager.load(args.model):
print("Failed to load model!")
sys.exit(1)
if args.cli:
interactive_cli()
else:
print(f"\n🚀 Starting server on http://{args.host}:{args.port}")
print(f"📖 API docs: http://{args.host}:{args.port}/docs")
uvicorn.run(app, host=args.host, port=args.port)
if __name__ == "__main__":
main()
|