File size: 19,112 Bytes
a12be21 | 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 | import json
import os
import traceback
from pathlib import Path
from typing import Any, Dict, List, Optional, Union
import gradio as gr
# Adjust this import to match your package layout.
# If PackedLLMRunner lives in a local module, change this line accordingly.
from PackedLLM import PackedLLMRunner
CHECKPOINT_PATH = os.getenv("PACKEDLLM_CHECKPOINT", "PackedLLM.pt")
MAP_LOCATION = os.getenv("PACKEDLLM_MAP_LOCATION", "cpu")
BOT_ID = os.getenv("PACKEDLLM_BOT_ID", "pip")
USER_ID = os.getenv("PACKEDLLM_USER_ID", "space_user")
DEFAULT_VENV_ID = os.getenv("PACKEDLLM_VENV_ID", "space_default")
_runner: Optional[PackedLLMRunner] = None
def _format_any(value: Any) -> str:
if isinstance(value, str):
return value
try:
return json.dumps(value, indent=2, ensure_ascii=False, default=str)
except Exception:
return repr(value)
def _parse_json(text: str, fallback: Any = None) -> Any:
text = (text or "").strip()
if not text:
return fallback
return json.loads(text)
def _parse_tags(text: str) -> List[str]:
raw = (text or "").strip()
if not raw:
return []
return [t.strip() for t in raw.split(",") if t.strip()]
def get_runner() -> PackedLLMRunner:
global _runner
if _runner is None:
_runner = PackedLLMRunner(
checkpoint_path=CHECKPOINT_PATH,
map_location=MAP_LOCATION,
bot_id=BOT_ID,
user_id=USER_ID,
warmup=False,
verbose=True,
)
return _runner
def chat_fn(
message: str,
history: List[Dict[str, str]],
image: Optional[str],
deep_think: bool,
fast_think: bool,
stream: bool,
):
history = history or []
message = (message or "").strip()
if not message and not image:
yield history, history, ""
return
user_content = message
if image:
if user_content:
user_content += f"\n\n[Image attached: {image}]"
else:
user_content = f"[Image attached: {image}]"
history = history + [{"role": "user", "content": user_content}]
yield history, history, ""
try:
runner = get_runner()
result = runner.chat(
message,
image=image,
stream=stream,
deep_think=deep_think,
fast_think=fast_think,
)
if stream and hasattr(result, "__iter__") and not isinstance(result, (str, bytes, dict, list, tuple)):
assembled = ""
for chunk in result:
if isinstance(chunk, dict) and "content" in chunk:
chunk_text = str(chunk["content"])
else:
chunk_text = str(chunk)
assembled += chunk_text
live_history = history + [{"role": "assistant", "content": assembled}]
yield live_history, live_history, ""
history = history + [{"role": "assistant", "content": assembled or ""}]
yield history, history, ""
else:
history = history + [{"role": "assistant", "content": _format_any(result)}]
yield history, history, ""
except Exception as exc:
err = traceback.format_exc()
history = history + [
{
"role": "assistant",
"content": f"**Error:** {exc}\n\n```text\n{err}\n```",
}
]
yield history, history, ""
def run_expert(
expert_name: str,
prompt: str,
image: Optional[str],
character_card: str,
logic_mode: str,
tools_json: str,
) -> str:
runner = get_runner()
prompt = (prompt or "").strip()
if not prompt and expert_name not in {"vision", "tool"}:
raise gr.Error("Please enter a prompt.")
kwargs: Dict[str, Any] = {}
if expert_name == "role" and character_card.strip():
kwargs["character_card"] = character_card.strip()
if expert_name == "logic":
kwargs["mode"] = logic_mode or "deep_then_answer"
if expert_name == "vision":
if not image:
raise gr.Error("Please upload an image for the Vision expert.")
kwargs["image"] = image
if expert_name == "tool":
tools = _parse_json(tools_json, fallback=None)
if not tools:
tools = [
{
"name": "noop",
"description": "No-op demo tool.",
"parameters": {"type": "object", "properties": {}},
}
]
return _format_any(runner.tool(prompt, tools=tools))
if expert_name == "head":
return _format_any(runner.head(prompt, image=image, **kwargs))
if expert_name == "creative":
return _format_any(runner.creative(prompt, **kwargs))
if expert_name == "code":
return _format_any(runner.code(prompt, **kwargs))
if expert_name == "logic":
return _format_any(runner.logic(prompt, **kwargs))
if expert_name == "math":
return _format_any(runner.math(prompt, **kwargs))
if expert_name == "translate":
return _format_any(runner.translate(prompt, **kwargs))
if expert_name == "affect":
return _format_any(runner.affect(prompt, **kwargs))
if expert_name == "role":
return _format_any(runner.role(prompt, **kwargs))
if expert_name == "vision":
return _format_any(runner.vision(prompt, image=image, **kwargs))
if expert_name == "web":
return _format_any(runner.web(prompt, **kwargs))
if expert_name == "action":
return _format_any(runner.action(prompt, **kwargs))
raise gr.Error(f"Unknown expert: {expert_name}")
def store_memory(text: str, tags: str, importance: float) -> str:
runner = get_runner()
result = runner.memory_store(
text=text.strip(),
tags=_parse_tags(tags),
importance=float(importance),
)
return _format_any(result)
def recall_memory(query: str, top_k: int) -> str:
runner = get_runner()
result = runner.memory_recall(query.strip(), top_k=int(top_k))
return _format_any(result)
def refresh_profiles() -> tuple[str, str]:
runner = get_runner()
return (
json.dumps(runner.get_user_profile(), indent=2, ensure_ascii=False, default=str),
json.dumps(runner.get_bot_profile(), indent=2, ensure_ascii=False, default=str),
)
def apply_profiles(user_profile_json: str, bot_profile_json: str) -> str:
runner = get_runner()
user_updates = _parse_json(user_profile_json, fallback={})
bot_updates = _parse_json(bot_profile_json, fallback={})
if not isinstance(user_updates, dict):
raise gr.Error("User profile JSON must be an object.")
if not isinstance(bot_updates, dict):
raise gr.Error("Bot profile JSON must be an object.")
if user_updates:
runner.set_user_profile(user_updates)
if bot_updates:
runner.set_bot_profile(bot_updates)
return "Profiles updated."
def warmup_runner(include_web: bool, include_vision: bool, include_action: bool) -> str:
runner = get_runner()
report = runner.warmup(
include_web=include_web,
include_vision=include_vision,
include_action=include_action,
)
return _format_any(report)
def get_status() -> str:
runner = get_runner()
return _format_any(runner.status())
def reload_expert(expert_name: str) -> str:
runner = get_runner()
result = runner.reload_expert(expert_name)
return _format_any(result)
def unload_expert(expert_name: str) -> str:
runner = get_runner()
runner.unload_expert(expert_name)
return f"Unloaded {expert_name}."
def unload_all() -> str:
runner = get_runner()
runner.unload_all()
return "Unloaded all experts."
def save_checkpoint(path: str) -> str:
runner = get_runner()
path = (path or "").strip()
if path:
runner.save(path)
return f"Saved checkpoint to {path}"
runner.save()
return f"Saved checkpoint to {CHECKPOINT_PATH}"
def run_code(
code: str,
venv_id: str,
requirements_text: str,
timeout: int,
max_ram_mb: int,
) -> str:
runner = get_runner()
reqs = [line.strip() for line in (requirements_text or "").splitlines() if line.strip()]
result = runner.run_code(
code=code,
venv_id=venv_id or DEFAULT_VENV_ID,
requirements=reqs or None,
timeout=int(timeout),
max_ram_mb=int(max_ram_mb),
ensure_venv=True,
)
return _format_any(result)
def web_search(query: str, deep_search: bool) -> str:
runner = get_runner()
result = runner.web_search(query.strip(), deep_search=deep_search)
return _format_any(result)
with gr.Blocks(title="PackedLLM Demo", theme=gr.themes.Soft()) as demo:
gr.Markdown(
f"""
# PackedLLM
Loaded checkpoint: `{CHECKPOINT_PATH}`
This demo exposes the main chat pipeline, direct expert calls, memory, web search, code execution, and system controls.
"""
)
with gr.Tabs():
with gr.Tab("Chat"):
chatbot = gr.Chatbot(type="messages", height=600, label="PackedLLM Chat")
history_state = gr.State([])
with gr.Row():
image_in = gr.Image(
type="filepath",
label="Optional image for vision-enabled turns",
)
prompt_in = gr.Textbox(
label="Message",
placeholder="Ask PackedLLM anything...",
lines=3,
)
with gr.Row():
deep_think_in = gr.Checkbox(value=False, label="Deep think")
fast_think_in = gr.Checkbox(value=False, label="Fast think")
stream_in = gr.Checkbox(value=True, label="Stream")
with gr.Row():
send_btn = gr.Button("Send", variant="primary")
clear_btn = gr.Button("Clear")
send_btn.click(
chat_fn,
inputs=[prompt_in, history_state, image_in, deep_think_in, fast_think_in, stream_in],
outputs=[chatbot, history_state, prompt_in],
)
prompt_in.submit(
chat_fn,
inputs=[prompt_in, history_state, image_in, deep_think_in, fast_think_in, stream_in],
outputs=[chatbot, history_state, prompt_in],
)
def clear_chat():
return [], [], ""
clear_btn.click(clear_chat, outputs=[chatbot, history_state, prompt_in])
with gr.Tab("Experts"):
gr.Markdown("Call individual experts directly.")
with gr.Row():
expert = gr.Dropdown(
choices=[
"head",
"creative",
"code",
"logic",
"math",
"translate",
"affect",
"role",
"vision",
"tool",
"web",
"action",
],
value="head",
label="Expert",
)
logic_mode = gr.Dropdown(
choices=["deep_then_answer", "answer_only", "deep_only"],
value="deep_then_answer",
label="Logic mode",
)
expert_prompt = gr.Textbox(label="Prompt", lines=6, placeholder="Enter a prompt for the chosen expert.")
expert_image = gr.Image(type="filepath", label="Image for Vision expert (optional)")
character_card = gr.Textbox(
label="Character card for Role expert",
lines=4,
placeholder="You are Pip, a direct and slightly sarcastic assistant.",
)
tools_json = gr.Textbox(
label="Tools JSON for Tool expert",
lines=8,
placeholder='[{"name":"noop","description":"No-op demo tool.","parameters":{"type":"object","properties":{}}}]',
)
expert_out = gr.Textbox(label="Output", lines=18)
run_expert_btn = gr.Button("Run expert", variant="primary")
run_expert_btn.click(
run_expert,
inputs=[expert, expert_prompt, expert_image, character_card, logic_mode, tools_json],
outputs=[expert_out],
)
with gr.Tab("Memory"):
gr.Markdown("Store and recall memory, plus user/bot profile editing.")
with gr.Row():
mem_text = gr.Textbox(label="Text to store", lines=4)
mem_tags = gr.Textbox(label="Tags (comma-separated)", value="manual")
mem_importance = gr.Slider(0.0, 1.0, value=0.7, step=0.05, label="Importance")
store_btn = gr.Button("Store memory")
mem_store_out = gr.Textbox(label="Store result", lines=4)
with gr.Row():
mem_query = gr.Textbox(label="Recall query", lines=3)
mem_top_k = gr.Slider(1, 20, value=5, step=1, label="Top K")
recall_btn = gr.Button("Recall memory")
mem_recall_out = gr.Textbox(label="Recall result", lines=10)
gr.Markdown("Profiles")
with gr.Row():
user_profile_json = gr.Textbox(label="User profile JSON", lines=10)
bot_profile_json = gr.Textbox(label="Bot profile JSON", lines=10)
with gr.Row():
refresh_profiles_btn = gr.Button("Refresh profiles")
apply_profiles_btn = gr.Button("Apply profiles", variant="primary")
profile_status = gr.Textbox(label="Profile status", lines=2)
store_btn.click(
store_memory,
inputs=[mem_text, mem_tags, mem_importance],
outputs=[mem_store_out],
)
recall_btn.click(
recall_memory,
inputs=[mem_query, mem_top_k],
outputs=[mem_recall_out],
)
refresh_profiles_btn.click(
refresh_profiles,
inputs=[],
outputs=[user_profile_json, bot_profile_json],
)
apply_profiles_btn.click(
apply_profiles,
inputs=[user_profile_json, bot_profile_json],
outputs=[profile_status],
)
with gr.Tab("Web"):
gr.Markdown("Direct web search through the embedded web module.")
web_query = gr.Textbox(label="Search query", lines=3)
web_deep = gr.Checkbox(value=False, label="Deep search")
web_btn = gr.Button("Search", variant="primary")
web_out = gr.Textbox(label="Results", lines=20)
web_btn.click(web_search, inputs=[web_query, web_deep], outputs=[web_out])
with gr.Tab("CodeBox"):
gr.Markdown("Run code inside the embedded sandbox.")
code_text = gr.Code(label="Python code", language="python", lines=18)
with gr.Row():
venv_id_in = gr.Textbox(label="Venv ID", value=DEFAULT_VENV_ID)
timeout_in = gr.Slider(5, 600, value=120, step=5, label="Timeout (seconds)")
max_ram_in = gr.Slider(256, 32768, value=4096, step=256, label="Max RAM (MB)")
requirements_in = gr.Textbox(
label="Requirements (one per line)",
lines=5,
placeholder="numpy\npandas\nrequests",
)
code_btn = gr.Button("Run code", variant="primary")
code_out = gr.Textbox(label="Sandbox result", lines=20)
code_btn.click(
run_code,
inputs=[code_text, venv_id_in, requirements_in, timeout_in, max_ram_in],
outputs=[code_out],
)
with gr.Tab("System"):
gr.Markdown("Warmup, status, load management, and checkpoint saving.")
with gr.Row():
warm_web = gr.Checkbox(value=False, label="Warm web")
warm_vision = gr.Checkbox(value=False, label="Warm vision")
warm_action = gr.Checkbox(value=False, label="Warm action")
warm_btn = gr.Button("Warmup", variant="primary")
warm_out = gr.Textbox(label="Warmup report", lines=10)
status_btn = gr.Button("Refresh status")
status_out = gr.Textbox(label="Status", lines=16)
with gr.Row():
expert_name = gr.Dropdown(
choices=[
"head_expert",
"creative_expert",
"code_expert",
"logic_expert",
"math_expert",
"affect_expert",
"role_expert",
"vision_expert",
"tool_expert",
"translation_expert",
"web_expert",
"action_expert",
],
value="head_expert",
label="Expert to reload/unload",
)
save_path = gr.Textbox(label="Save path (blank = default)", value="")
with gr.Row():
reload_btn = gr.Button("Reload expert")
unload_btn = gr.Button("Unload expert")
unload_all_btn = gr.Button("Unload all")
save_btn = gr.Button("Save checkpoint", variant="primary")
reload_out = gr.Textbox(label="Reload result", lines=2)
unload_out = gr.Textbox(label="Unload result", lines=2)
save_out = gr.Textbox(label="Save result", lines=2)
warm_btn.click(
warmup_runner,
inputs=[warm_web, warm_vision, warm_action],
outputs=[warm_out],
)
status_btn.click(get_status, inputs=[], outputs=[status_out])
reload_btn.click(reload_expert, inputs=[expert_name], outputs=[reload_out])
unload_btn.click(unload_expert, inputs=[expert_name], outputs=[unload_out])
unload_all_btn.click(unload_all, inputs=[], outputs=[unload_out])
save_btn.click(save_checkpoint, inputs=[save_path], outputs=[save_out])
demo.load(refresh_profiles, inputs=[], outputs=[user_profile_json, bot_profile_json])
if __name__ == "__main__":
demo.queue(default_concurrency_limit=1).launch() |