Spaces:
Sleeping
Sleeping
File size: 27,410 Bytes
140c4d5 5941741 140c4d5 5941741 140c4d5 c4c7f89 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 1a5d3d0 5941741 140c4d5 5e96ef1 1a5d3d0 5941741 5e96ef1 1a5d3d0 5941741 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 c4c7f89 140c4d5 c4c7f89 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5e96ef1 140c4d5 5941741 140c4d5 5941741 140c4d5 5941741 140c4d5 16dffaa f525e1a c326da8 16dffaa 140c4d5 | 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 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 | #!/usr/bin/env python3
"""
ᐴ TinyBard ᔔ — Aanishinaabe Mikinaak-Aki / Fire-Fly Storyteller
==================================================================
Custom FastAPI app with Gradio Blocks mounted for MCP tool integration.
Cedar-and-copper CRT terminal frontend served as static HTML.
Aesthetic: Anishinaabe Solarpunk — sky-to-sunrise palette, syllabic framings,
biophilic motifs, solarpunk hope.
Targets: Thousand Token Wood + Tiny Titan + Llama Champion tracks.
Badges: Llama Champion, Tiny Titan, Off-Brand (custom frontend),
Off the Grid, Field Notes.
"""
import os
import json
import random
import logging
import re
import sys
from pathlib import Path
from typing import Dict, List, Optional
import threading
import gradio as gr
from fastapi import FastAPI
from fastapi.responses import HTMLResponse
from fastapi.staticfiles import StaticFiles
from gradio import mount_gradio_app
# Inference client with cooldown (no local GGUF, no llama-cpp-python build!)
# Path layout: monorepo/shared/inference_client.py — go up two parents from this file.
sys.path.insert(0, str(Path(__file__).resolve().parent.parent.parent))
from shared.inference_client import (
InferenceResult,
cooldown_status,
cooldown_remaining,
cooldown_active,
generate as inference_generate,
chat_messages,
INFERENCE_MODEL,
)
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(levelname)s] %(name)s: %(message)s",
)
log = logging.getLogger("tinybard")
# ---------------------------------------------------------------------------
# Config & Paths
# ---------------------------------------------------------------------------
BASE_DIR = Path(__file__).parent
STATIC_DIR = BASE_DIR / "static"
# Use HF Inference API (VibeThinker 1.5B by default — small, fast, free tier).
# Override via Space env var: INFERENCE_MODEL.
# Cooldown enforced in shared.inference_client.
TINYBARD_MODEL = os.environ.get("TINYBARD_MODEL", INFERENCE_MODEL)
# ---------------------------------------------------------------------------
# User-configurable inference (BYO token / model)
# ---------------------------------------------------------------------------
_USER_CONFIG_LOCK = threading.Lock()
_USER_CONFIG: Dict[str, Optional[str]] = {
"hf_token": None,
"model": None,
"custom_endpoint": None,
}
def get_user_hf_token() -> Optional[str]:
with _USER_CONFIG_LOCK:
return _USER_CONFIG["hf_token"]
def get_user_model() -> Optional[str]:
with _USER_CONFIG_LOCK:
return _USER_CONFIG["model"]
def get_user_custom_endpoint() -> Optional[str]:
with _USER_CONFIG_LOCK:
return _USER_CONFIG["custom_endpoint"]
# ---------------------------------------------------------------------------
# Llama.cpp Inference Setup
# ---------------------------------------------------------------------------
# No local LLM state — every inference call goes through the HF Inference API
# with cooldown enforcement. Procedural fallback is always available.
def llm_available() -> bool:
"""True if we *might* succeed at an inference call (cooldown not active,
HF_TOKEN configured, model id is set)."""
import os
token = get_user_hf_token() or os.environ.get("HF_TOKEN") or os.environ.get("HUGGINGFACEHUB_API_TOKEN")
model = get_user_model() or TINYBARD_MODEL
# Inference API still works anonymously for some models, so don't gate hard.
return bool(model) and not cooldown_active("tinybard")
def last_inference_status() -> dict:
"""Snapshot of the current cooldown + model for /api/model_status."""
return {
"model": get_user_model() or TINYBARD_MODEL,
"cooldown": cooldown_status("tinybard"),
"has_user_token": bool(get_user_hf_token()),
}
# ---------------------------------------------------------------------------
# Procedural Fallback Adventure Engine
# ---------------------------------------------------------------------------
GENRES = {
"fantasy": {
"start": "You stand before the gates of the Whisperwood. The ancient trees hum with a faint violet energy.",
"nodes": [
{
"story": "A glowing sprite appears, offering a golden key or a mossy vial.",
"choices": ["Take the golden key", "Drink the mossy vial", "Ignore the sprite and press forward"]
},
{
"story": "You encounter a moss-covered stone golem blocking the path. It speaks in riddles.",
"choices": ["Answer its riddle with a joke", "Use your golden key if you have it", "Try to climb over it"]
},
{
"story": "You discover a hidden pool reflecting stars that aren't in the sky.",
"choices": ["Drink from the star pool", "Rest by the shore", "Toss a coin into the water"]
}
],
"win": "You find the heart of the forest and unlock the ancient relic. You are victorious!",
"lose": "The energy of the forest overwhelms you. You fade into the whispers of the wood."
},
"scifi": {
"start": "The emergency lights flicker red in the derelict cargo bay of USS Horizon. Gravity is failing.",
"nodes": [
{
"story": "A leaking fuel pipe blocks the corridor ahead. Sparking wires fill the air.",
"choices": ["Siphon the fuel", "Bypass the circuits", "Wait for the cycle to clear"]
},
{
"story": "An automated security drone activates, targeting you with its laser system.",
"choices": ["Hack the drone terminal", "Throw scrap metal to distract it", "Run for the airlock"]
},
{
"story": "You reach the main computer terminal. The AI core is corrupt but online.",
"choices": ["Initiate override protocol", "Ask the AI for help", "Pull the main power breaker"]
}
],
"win": "You restore life support and secure the escape pod. You survive!",
"lose": "The hull breaches. You are swept into the cold embrace of outer space."
},
"cyberpunk": {
"start": "Acid rain beats against the neon signs of Sector 9. Your neural interface is glitching.",
"nodes": [
{
"story": "A street dealer offers to patch your wetware for a few credits or a favor.",
"choices": ["Accept the shady patch", "Decline and buy a neural booster", "Threaten him for info"]
},
{
"story": "A corporate agent corners you in a wet alleyway. He demands your datapad.",
"choices": ["Upload a virus to his cyber-eyes", "Hand over a fake datapad", "Sprint up the fire escape"]
},
{
"story": "You infiltrate the mainframe room of Shinra-Tech. The security grid is active.",
"choices": ["Jack in directly", "Use your backup deck", "Short-circuit the access node"]
}
],
"win": "You upload the corporate secrets to the net. Sector 9 is free. You win!",
"lose": "Your brain fried due to feedback from the security grid. Game Over."
}
}
def generate_procedural_step(genre: str, step: int, health: int, choice: str = "") -> dict:
"""Generate a fallback adventure step without LLM."""
genre_data = GENRES.get((genre or "fantasy").lower(), GENRES["fantasy"])
if step == 0:
return {
"story": genre_data["start"],
"choices": genre_data["nodes"][0]["choices"],
"health": health,
"step": 1,
"game_over": False
}
health_delta = random.choice([-15, 0, 10])
new_health = max(0, min(100, health + health_delta))
if new_health <= 0:
return {
"story": f"After choosing: '{choice}'. " + genre_data["lose"],
"choices": [],
"health": 0,
"step": step + 1,
"game_over": True
}
if step >= 4:
return {
"story": f"After choosing: '{choice}'. " + genre_data["win"],
"choices": [],
"health": new_health,
"step": step + 1,
"game_over": True
}
node = genre_data["nodes"][step % len(genre_data["nodes"])]
return {
"story": f"You choose: '{choice}'.\n\n{node['story']}",
"choices": node["choices"],
"health": new_health,
"step": step + 1,
"game_over": False
}
# ---------------------------------------------------------------------------
# LLM Generation Logic (HF Inference API + cooldown)
# ---------------------------------------------------------------------------
def _parse_messages(genre: str, history: List[Dict[str, str]], next_instruction: str) -> list[Dict[str, str]]:
"""Translate internal history into OpenAI-style chat messages."""
system = (
"You are the narrator of an interactive text adventure game. "
f"Genre: {genre}. Write in the second person ('You...'). "
"Keep descriptions highly atmospheric but short (under 3 sentences). "
"Focus on action, mystery, and choice."
)
msgs: List[Dict[str, str]] = [{"role": "system", "content": system}]
for h in (history or []):
if h.get("role") == "player":
msgs.append({"role": "user", "content": h["text"]})
elif h.get("role") == "narrator":
msgs.append({"role": "assistant", "content": h["text"]})
msgs.append({"role": "user", "content": next_instruction})
return msgs
def generate_llm_story_beat(genre: str, history: List[Dict[str, str]], instruction: str) -> str:
"""Generation 1: Generate the story beat for this turn."""
if cooldown_active("tinybard"):
return ""
system = (
"You are the narrator of an interactive text adventure game. "
f"Genre: {genre}. Write in the second person ('You...'). "
"Keep descriptions highly atmospheric but short (under 3 sentences). "
"Focus on action, mystery, and choice. Do not offer choices here."
)
try:
result = inference_generate(
project="tinybard",
messages=_parse_messages(genre, history, instruction),
max_new_tokens=180,
temperature=0.7,
token=get_user_hf_token(),
model=get_user_model(),
custom_endpoint=get_user_custom_endpoint(),
)
return result.text.strip()
except Exception as e:
log.warning(f"HF Inference error (story): {e}")
return ""
def generate_llm_choices_for_story(genre: str, story: str) -> List[str]:
"""Generation 2: Generate 3 distinct choices based on the story beat."""
if cooldown_active("tinybard"):
return []
system = (
"You generate 3 short, distinct player choices for an interactive text adventure. "
"Output exactly in the format: 1. <choice> | 2. <choice> | 3. <choice>"
)
user = f"Genre: {genre}. Story beat: {story[:400]}. Give 3 choices."
try:
result = inference_generate(
project="tinybard",
messages=[{"role": "system", "content": system}, {"role": "user", "content": user}],
max_new_tokens=80,
temperature=0.8,
token=get_user_hf_token(),
model=get_user_model(),
custom_endpoint=get_user_custom_endpoint(),
)
return _parse_choices(result.text)
except Exception as e:
log.warning(f"HF Inference error (choices): {e}")
return []
def generate_llm_health_effect(genre: str, history: List[Dict[str, str]], current_health: int, story: str) -> dict:
"""Generation 3: Model decides health delta and provides funny commentary.
Returns dict with keys: health_delta, commentary, game_over, overheal.
overheal = True when health goes >= 100.
game_over = True when health <= 0.
"""
if cooldown_active("tinybard"):
return {"health_delta": random.choice([-15, 0, 10]), "commentary": "", "game_over": False, "overheal": False}
system = (
f"You are the narrator of a {genre} text adventure. "
"Based on the story beat, decide a health delta of -15, 0, or +10. "
"Then write ONE short funny sentence (under 20 words) about the health change. "
"Output format: HEALTH_DELTA: <number> | COMMENTARY: <funny sentence>"
)
user = f"Current health: {current_health}/100. Story: {story[:300]}. History: {json.dumps(history[-2:])}."
try:
result = inference_generate(
project="tinybard",
messages=[{"role": "system", "content": system}, {"role": "user", "content": user}],
max_new_tokens=60,
temperature=0.8,
token=get_user_hf_token(),
model=get_user_model(),
custom_endpoint=get_user_custom_endpoint(),
)
text = result.text.strip()
except Exception as e:
log.warning(f"HF Inference error (health): {e}")
return {"health_delta": random.choice([-15, 0, 10]), "commentary": "", "game_over": False, "overheal": False}
# Parse health delta
health_delta = random.choice([-15, 0, 10])
m = re.search(r"HEALTH_DELTA:\s*([+-]?\d+)", text, re.IGNORECASE)
if m:
try:
health_delta = int(m.group(1))
except Exception:
pass
# Parse commentary
commentary = ""
m2 = re.search(r"COMMENTARY:\s*(.+?)(?:\||$)", text, re.IGNORECASE | re.DOTALL)
if m2:
commentary = m2.group(1).strip()
else:
# Fallback: use the whole text minus the delta line
lines = text.split("\n")
commentary = " ".join(lines[1:]).strip() if len(lines) > 1 else ""
new_health = max(0, min(150, current_health + health_delta))
game_over = new_health <= 0
overheal = new_health >= 100 and current_health < 100
return {
"health_delta": health_delta,
"commentary": commentary,
"game_over": game_over,
"overheal": overheal,
"new_health": new_health,
}
# ---------------------------------------------------------------------------
# Gradio Blocks — API endpoints (exposed as MCP tools)
# ---------------------------------------------------------------------------
def create_gradio_app() -> gr.Blocks:
"""Build the Gradio Blocks app with API endpoints for MCP integration."""
with gr.Blocks(title="TinyBard API") as blocks:
# Hidden state — not rendered in UI, used by API
genre_input = gr.Textbox(label="Genre", visible=False)
step_input = gr.Number(label="Step", value=0, visible=False)
health_input = gr.Number(label="Health", value=100, visible=False)
choice_input = gr.Textbox(label="Choice", visible=False)
history_input = gr.Textbox(label="History JSON", value="[]", visible=False)
# Output fields
story_output = gr.Textbox(label="Story")
choices_output = gr.JSON(label="Choices")
health_output = gr.Number(label="Health")
step_output = gr.Number(label="Step")
game_over_output = gr.Checkbox(label="Game Over")
history_output = gr.Textbox(label="History JSON")
def api_start_game(genre: str = "fantasy"):
"""Start a new interactive text adventure. Exposed as MCP tool."""
if not genre:
genre = "fantasy"
genre = genre.lower()
if genre not in ["fantasy", "scifi", "cyberpunk"]:
genre = "fantasy"
# Try LLM first (will skip if cooldown is active)
instruction = "Narrate the beginning of the adventure. What happens first? Do not offer choices yet."
story = generate_llm_story_beat(genre, [], instruction)
if not story:
result = generate_procedural_step(genre, 0, 100)
return (
result["story"], result["choices"], result["health"],
result["step"], result["game_over"],
json.dumps(result.get("history", []))
)
choices = generate_llm_choices_for_story(genre, story)
if len(choices) < 2:
choices = ["Explore the area", "Check your equipment", "Proceed carefully"]
history = [{"role": "narrator", "text": story}]
health_effect = generate_llm_health_effect(genre, history, 100, story)
if health_effect.get("commentary"):
story = f"{story}\n\n{health_effect['commentary']}"
return (story, choices[:3], health_effect["new_health"], 1, health_effect["game_over"], json.dumps(history))
def api_make_choice(choice: str, genre: str, step: int, health: int, history_json: str):
"""Submit a player choice to advance the story. Exposed as MCP tool."""
try:
history = json.loads(history_json)
except Exception:
history = []
step = int(step)
health = int(health)
history.append({"role": "player", "text": choice})
instruction = "Narrate what happens next as a result of the player's choice."
story = generate_llm_story_beat(genre, history, instruction)
if not story:
result = generate_procedural_step(genre, step, health, choice)
return (
result["story"], result["choices"], result["health"],
result["step"], result["game_over"],
json.dumps(result.get("history", history))
)
choices = generate_llm_choices_for_story(genre, story)
if len(choices) < 2:
choices = ["Move forward", "Look around", "Rest a moment"]
history.append({"role": "narrator", "text": story})
health_effect = generate_llm_health_effect(genre, history, health, story)
if health_effect.get("commentary"):
story = f"{story}\n\n{health_effect['commentary']}"
return (story, choices[:3], health_effect["new_health"], step + 1, health_effect["game_over"], json.dumps(history))
# Register API endpoints
gr.Button("Start Game").click(
fn=api_start_game,
inputs=[genre_input],
outputs=[story_output, choices_output, health_output, step_output, game_over_output, history_output],
api_name="start_game"
)
gr.Button("Make Choice").click(
fn=api_make_choice,
inputs=[choice_input, genre_input, step_input, health_input, history_input],
outputs=[story_output, choices_output, health_output, step_output, game_over_output, history_output],
api_name="make_choice"
)
return blocks
def _parse_choices(choices_text: str) -> List[str]:
"""Parse LLM choice output into a list of choices."""
choices = []
if "|" in choices_text:
choices = [c.split(".")[-1].strip() for c in choices_text.split("|")]
else:
for line in choices_text.split("\n"):
if "." in line or any(d in line for d in "123"):
parts = line.split(".", 1)
if len(parts) > 1:
choices.append(parts[1].strip())
return choices
# ---------------------------------------------------------------------------
# FastAPI App — Custom frontend + Gradio API
# ---------------------------------------------------------------------------
fastapi_app = FastAPI(title="TinyBard", docs_url="/docs")
@fastapi_app.get("/", response_class=HTMLResponse)
async def homepage():
"""Serve the retro CRT terminal frontend."""
index_path = STATIC_DIR / "index.html"
if index_path.exists():
return index_path.read_text()
return HTMLResponse("<h1>TinyBard retro terminal under construction!</h1>")
@fastapi_app.get("/api/model_status")
async def model_status():
"""Check the inference client + cooldown status."""
return last_inference_status()
# ---------------------------------------------------------------------------
# Game Logic — exposed as both FastAPI (clean JSON) and Gradio (MCP)
# ---------------------------------------------------------------------------
def _run_turn(choice: str, genre: str, step: int, health: int, history: List[Dict]) -> dict:
"""Single source of truth for one adventure turn.
Returns a dict the frontend can consume directly. Used by both the
FastAPI /api/game/* endpoints and the Gradio MCP tools.
"""
in_cooldown = cooldown_active("tinybard")
if step == 0:
if in_cooldown:
return generate_procedural_step(genre, 0, 100)
instruction = "Narrate the beginning of the adventure. What happens first? Do not offer choices yet."
story = generate_llm_story_beat(genre, [], instruction)
if not story:
return generate_procedural_step(genre, 0, 100)
choices = generate_llm_choices_for_story(genre, story)
if len(choices) < 2:
choices = ["Explore the area", "Check your equipment", "Proceed carefully"]
history = [{"role": "narrator", "text": story}]
health_effect = generate_llm_health_effect(genre, history, 100, story)
if health_effect.get("commentary"):
story = f"{story}\n\n{health_effect['commentary']}"
return {
"story": story, "choices": choices[:3],
"health": health_effect["new_health"], "step": 1,
"game_over": health_effect["game_over"], "history": history,
}
if in_cooldown:
return generate_procedural_step(genre, step, health, choice)
history.append({"role": "player", "text": choice})
instruction = "Narrate what happens next as a result of the player's choice."
story = generate_llm_story_beat(genre, history, instruction)
if not story:
return generate_procedural_step(genre, step, health, choice)
choices = generate_llm_choices_for_story(genre, story)
if len(choices) < 2:
choices = ["Move forward", "Look around", "Rest a moment"]
history.append({"role": "narrator", "text": story})
health_effect = generate_llm_health_effect(genre, history, health, story)
if health_effect.get("commentary"):
story = f"{story}\n\n{health_effect['commentary']}"
return {
"story": story, "choices": choices[:3],
"health": health_effect["new_health"], "step": step + 1,
"game_over": health_effect["game_over"], "history": history,
}
@fastapi_app.post("/api/game/start")
async def game_start(payload: dict):
"""Start a new adventure. Returns clean JSON.
Body: {"genre": "fantasy|scifi|cyberpunk"}
"""
genre = (payload.get("genre") or "fantasy").lower()
if genre not in ["fantasy", "scifi", "cyberpunk"]:
genre = "fantasy"
return _run_turn(choice="", genre=genre, step=0, health=100, history=[])
@fastapi_app.post("/api/game/choice")
async def game_choice(payload: dict):
"""Submit a player choice. Returns clean JSON.
Body: {
"choice": str, "genre": str, "step": int, "health": int,
"history": [{"role": ..., "text": ...}, ...]
}
"""
return _run_turn(
choice=payload.get("choice", ""),
genre=payload.get("genre", "fantasy"),
step=int(payload.get("step", 1)),
health=int(payload.get("health", 100)),
history=payload.get("history", []),
)
@fastapi_app.post("/api/config")
async def update_config(body: dict):
with _USER_CONFIG_LOCK:
if "hf_token" in body:
_USER_CONFIG["hf_token"] = body["hf_token"].strip() if body["hf_token"] else None
if "model" in body:
_USER_CONFIG["model"] = body["model"].strip() if body["model"] else None
if "custom_endpoint" in body:
_USER_CONFIG["custom_endpoint"] = body["custom_endpoint"].strip() if body["custom_endpoint"] else None
current = dict(_USER_CONFIG)
return {
"status": "ok",
"model": current["model"] or TINYBARD_MODEL,
"has_token": bool(current["hf_token"]),
"custom_endpoint": current["custom_endpoint"],
}
@fastapi_app.get("/api/config")
async def get_config():
with _USER_CONFIG_LOCK:
current = dict(_USER_CONFIG)
return {
"model": current["model"] or TINYBARD_MODEL,
"has_token": bool(current["hf_token"]),
"custom_endpoint": current["custom_endpoint"],
}
# Mount static files
fastapi_app.mount("/static", StaticFiles(directory=str(STATIC_DIR)), name="static")
@fastapi_app.on_event("startup")
async def run_diagnostics():
log.info("Running startup diagnostics for HF Inference API models...")
import os
for k, v in sorted(os.environ.items()):
if any(secret in k.lower() for secret in ["key", "token", "pass", "secret"]):
log.info(f"ENV: {k} = [REDACTED]")
else:
log.info(f"ENV: {k} = {v}")
# Test outbound internet
import httpx
try:
resp = httpx.get("https://httpbin.org/ip", timeout=5.0)
log.info(f"INTERNET TEST (httpbin): {resp.status_code} => {resp.text.strip()}")
except Exception as e:
log.info(f"INTERNET TEST (httpbin) => FAIL: {repr(e)}")
from huggingface_hub import InferenceClient
import os
token = os.environ.get("HF_TOKEN") or os.environ.get("HUGGINGFACEHUB_API_TOKEN")
models = [
"Qwen/Qwen2.5-1.5B-Instruct",
"HuggingFaceTB/SmolLM2-1.7B-Instruct",
"google/gemma-2-2b-it",
"microsoft/Phi-3.5-mini-instruct",
"microsoft/Phi-4-mini-instruct",
]
for m in models:
# Test 1: plain text_generation
try:
client = InferenceClient(model=m, token=token)
res = client.text_generation("Say hello", max_new_tokens=10)
log.info(f"DIAGNOSTIC: {m} (text_gen) => SUCCESS: {res.strip()}")
except Exception as e:
log.info(f"DIAGNOSTIC: {m} (text_gen) => FAIL: {str(e)[:150]}")
# Test 2: conversational
try:
client = InferenceClient(model=m, token=token)
# Try chat_completion but with explicit hf-inference provider if possible, or just default
res = client.chat_completion(messages=[{"role": "user", "content": "Say hello"}], max_tokens=10)
log.info(f"DIAGNOSTIC: {m} (chat) => SUCCESS: {res.choices[0].message.content.strip()}")
except Exception as e:
log.info(f"DIAGNOSTIC: {m} (chat) => FAIL: {str(e)[:150]}")
# Mount Gradio app at /gradio — this creates the API + MCP endpoints
gradio_blocks = create_gradio_app()
mount_gradio_app(fastapi_app, gradio_blocks, path="/gradio")
# ---------------------------------------------------------------------------
# Exported for HF Spaces Gradio SDK (launches once on import)
# ---------------------------------------------------------------------------
app = fastapi_app
# ---------------------------------------------------------------------------
# HF Spaces entrypoint — keep the ASGI server alive
# ---------------------------------------------------------------------------
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)
|