File size: 7,919 Bytes
79ade56 | 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 | #!/usr/bin/env python3
"""
vROM Hub CLI β build and publish vROM packages from the command line.
Usage:
# Build from markdown files
python -m vrom_hub.cli build my-docs \
--name "My Docs" \
--description "My project documentation" \
--files docs/*.md \
--output ./vrom_output
# Build from URLs
python -m vrom_hub.cli build my-docs \
--name "My Docs" \
--urls https://example.com/docs/page1 https://example.com/docs/page2
# Build + upload to registry
python -m vrom_hub.cli submit my-docs \
--name "My Docs" \
--description "My project docs" \
--files docs/*.md \
--tags my-project api
# List registry
python -m vrom_hub.cli list
# Info about a specific vROM
python -m vrom_hub.cli info my-docs
"""
import argparse
import glob
import json
import logging
import sys
from pathlib import Path
def cmd_build(args):
"""Build a vROM locally (no upload)."""
from vrom_hub import VromHubBackend
hub = VromHubBackend(
registry_repo=args.registry,
max_chunk_tokens=args.max_tokens,
)
pages = _collect_pages(args)
if not pages:
print("Error: No pages found. Provide --files or --urls.", file=sys.stderr)
sys.exit(1)
result = hub.build_vrom(
pages=pages,
vrom_id=args.vrom_id,
version=args.version or "1.0.0",
description=args.description or "",
output_dir=args.output or f"./vrom-{args.vrom_id}",
)
print(json.dumps({
"vrom_id": result["vrom_id"],
"output_dir": result["output_dir"],
"stats": result["stats"],
}, indent=2))
def cmd_submit(args):
"""Build and upload a vROM to the registry."""
from vrom_hub import VromHubBackend
hub = VromHubBackend(
registry_repo=args.registry,
max_chunk_tokens=args.max_tokens,
)
pages = _collect_pages(args)
if not pages:
print("Error: No pages found. Provide --files or --urls.", file=sys.stderr)
sys.exit(1)
result = hub.submit_project(
vrom_id=args.vrom_id,
name=args.name or args.vrom_id,
description=args.description or "",
version=args.version or "1.0.0",
pages=pages,
tags=args.tags,
official=args.official,
output_dir=args.output,
upload=True,
)
print(json.dumps({
"vrom_id": result["vrom_id"],
"hub_url": result.get("hub_url"),
"stats": result["stats"],
}, indent=2))
def cmd_list(args):
"""List all vROMs in the registry."""
from vrom_hub import VromHubBackend
hub = VromHubBackend(registry_repo=args.registry)
vroms = hub.list_vroms()
if not vroms:
print("No vROMs found in registry.")
return
for v in vroms:
tags = ", ".join(v.get("tags", []))
print(f" {v['id']:30s} v{v['version']:8s} {v['vectors']:5d} vectors {v.get('size_mb', '?'):>5}MB [{tags}]")
print(f" {v['description']}")
print()
def cmd_info(args):
"""Show details for a specific vROM."""
from vrom_hub import VromHubBackend
hub = VromHubBackend(registry_repo=args.registry)
vroms = hub.list_vroms()
for v in vroms:
if v["id"] == args.vrom_id:
print(json.dumps(v, indent=2))
return
print(f"vROM '{args.vrom_id}' not found in registry.", file=sys.stderr)
sys.exit(1)
def _collect_pages(args) -> list[dict]:
"""Collect documentation pages from CLI arguments."""
pages = []
# From files
if hasattr(args, 'files') and args.files:
for pattern in args.files:
for filepath in sorted(glob.glob(pattern)):
path = Path(filepath)
content = path.read_text(encoding="utf-8")
pages.append({
"content": content,
"source_file": str(path),
"url": "",
"title": None,
})
# From URLs (not fetched here β the backend's fetcher handles it)
if hasattr(args, 'urls') and args.urls:
from vrom_hub.fetcher import DocFetcher
fetcher = DocFetcher()
for url in args.urls:
try:
doc_page = fetcher.fetch_url(url)
pages.append({
"content": doc_page.content,
"source_file": doc_page.source_file,
"url": doc_page.url,
"title": doc_page.title,
})
except Exception as e:
print(f"Warning: Failed to fetch {url}: {e}", file=sys.stderr)
return pages
def main():
parser = argparse.ArgumentParser(
prog="vrom-hub",
description="vROM Hub Backend β build and publish vROM packages",
)
parser.add_argument(
"--registry", default="philipp-zettl/vrom-registry",
help="HF dataset repo for the vROM registry",
)
parser.add_argument(
"--verbose", "-v", action="store_true",
help="Enable verbose logging",
)
sub = parser.add_subparsers(dest="command", required=True)
# ββ build βββββββββββββββββββββββββββββββββββββββββββββ
p_build = sub.add_parser("build", help="Build a vROM locally")
p_build.add_argument("vrom_id", help="Unique vROM identifier")
p_build.add_argument("--name", help="Human-readable name")
p_build.add_argument("--description", "-d", help="Description")
p_build.add_argument("--version", default="1.0.0", help="Version (default: 1.0.0)")
p_build.add_argument("--files", nargs="+", help="Markdown file glob patterns")
p_build.add_argument("--urls", nargs="+", help="URLs to fetch")
p_build.add_argument("--output", "-o", help="Output directory")
p_build.add_argument("--max-tokens", type=int, default=256, help="Max tokens per chunk")
p_build.set_defaults(func=cmd_build)
# ββ submit ββββββββββββββββββββββββββββββββββββββββββββ
p_submit = sub.add_parser("submit", help="Build + upload to registry")
p_submit.add_argument("vrom_id", help="Unique vROM identifier")
p_submit.add_argument("--name", help="Human-readable name")
p_submit.add_argument("--description", "-d", help="Description")
p_submit.add_argument("--version", default="1.0.0", help="Version (default: 1.0.0)")
p_submit.add_argument("--files", nargs="+", help="Markdown file glob patterns")
p_submit.add_argument("--urls", nargs="+", help="URLs to fetch")
p_submit.add_argument("--output", "-o", help="Output directory (optional)")
p_submit.add_argument("--tags", nargs="+", default=[], help="Tags for the vROM")
p_submit.add_argument("--official", action="store_true", help="Mark as official")
p_submit.add_argument("--max-tokens", type=int, default=256, help="Max tokens per chunk")
p_submit.set_defaults(func=cmd_submit)
# ββ list ββββββββββββββββββββββββββββββββββββββββββββββ
p_list = sub.add_parser("list", help="List all vROMs in registry")
p_list.set_defaults(func=cmd_list)
# ββ info ββββββββββββββββββββββββββββββββββββββββββββββ
p_info = sub.add_parser("info", help="Show details for a vROM")
p_info.add_argument("vrom_id", help="vROM identifier")
p_info.set_defaults(func=cmd_info)
args = parser.parse_args()
level = logging.DEBUG if args.verbose else logging.INFO
logging.basicConfig(level=level, format="%(name)s | %(message)s")
args.func(args)
if __name__ == "__main__":
main()
|