Bundle firecracker runtime and switch ollama demo to live logs

This commit is contained in:
Thales Maciel 2026-03-05 20:20:36 -03:00
parent ef0ddeaa11
commit 65f7c0d262
26 changed files with 1896 additions and 408 deletions

View file

@ -1,15 +1,14 @@
"""Example script that proves the static MCP tool works."""
"""Example script that proves lifecycle command execution works."""
from __future__ import annotations
import asyncio
import json
from pyro_mcp.demo import run_demo
def main() -> None:
payload = asyncio.run(run_demo())
payload = run_demo()
print(json.dumps(payload, indent=2, sort_keys=True))