Spaces:
Sleeping
Sleeping
File size: 8,768 Bytes
5cb0758 | 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 | """Lore CLI β all /lore commands available from the terminal."""
from __future__ import annotations
import sys
from pathlib import Path
from typing import Optional
import typer
from rich import print as rprint
from rich.console import Console
from rich.table import Table
app = typer.Typer(name="lore", help="Personal ML research knowledge wiki", add_completion=False)
console = Console()
@app.command("ingest")
def ingest_cmd(
source: str = typer.Argument(..., help="File path or URL to ingest"),
force: bool = typer.Option(False, "--force", "-f", help="Re-ingest even if already seen"),
):
"""Parse and fingerprint a new source document."""
from lore.ingest.pipeline import ingest_file, ingest_url
if source.startswith("http://") or source.startswith("https://"):
chunks = ingest_url(source)
else:
chunks = ingest_file(source, force=force)
if chunks:
rprint(f"[green]β[/green] Ingested {len(chunks)} chunks from: {source}")
rprint("[yellow]Source saved to raw/. Tell your agent to ingest it.[/yellow]")
else:
rprint(f"[yellow]Skipped (already ingested or empty): {source}[/yellow]")
@app.command("search")
def search_cmd(
query: str = typer.Argument(..., help="Search query"),
top_k: int = typer.Option(8, "--top-k", "-k", help="Number of results"),
full: bool = typer.Option(False, "--full", help="Show full article content"),
):
"""Search the wiki with TF-IDF search."""
from lore.index.search import search_and_read, format_search_results, search_wiki
if full:
results = search_and_read(query, top_k=top_k)
for r, content in results:
rprint(f"\n[bold cyan]=== {r.title} ({r.article_path}) ===[/bold cyan]")
rprint(content[:3000])
else:
results = search_wiki(query, top_k=top_k)
rprint(format_search_results(results))
@app.command("rebuild-index")
def rebuild_index_cmd():
"""Rebuild the TF-IDF search index."""
from lore.index.store import rebuild_index
stats = rebuild_index()
rprint(f"[green]β[/green] Index rebuilt: {stats['articles']} articles")
@app.command("demo")
def demo_cmd(
reset: bool = typer.Option(
False,
"--reset",
help="Replace raw/, wiki/, data/, and outputs/ with the seeded demo workspace",
),
):
"""Seed a reproducible starter corpus for a fresh clone."""
from lore.demo import DEMO_QUESTIONS, seed_demo
try:
stats = seed_demo(reset=reset)
except RuntimeError as exc:
rprint(f"[red]Error:[/red] {exc}")
raise typer.Exit(code=1) from exc
rprint("[green]β[/green] Demo workspace ready.")
rprint(f" Articles: {stats['articles']}")
rprint(f" Sources: {stats['sources']}")
rprint(f" Question traces: {stats['traces']}")
rprint(f" Cached suggestions: {stats['suggestions_cached']} ({stats['suggestion_mode']})")
rprint("\n[bold]Try these prompts:[/bold]")
for i, question in enumerate(DEMO_QUESTIONS, 1):
rprint(f" [cyan]{i}.[/cyan] {question}")
rprint("")
@app.command("trace")
def trace_cmd(
question: str = typer.Argument(..., help="The question to record"),
):
"""Capture a question trace for curiosity training (no GPU needed)."""
from lore.evolve.curiosity import build_wiki_state_summary
from lore.evolve.trajectory import capture_question_trace
wiki_state = build_wiki_state_summary()
trace = capture_question_trace(question, wiki_state)
rprint(f"[green]β[/green] Question trace saved ({trace.id[:8]})")
@app.command("health")
def health_cmd():
"""Audit the wiki for quality issues and undiscovered connections."""
from lore.health.checker import run_health_check
results = run_health_check()
stats = results.get("stats", {})
rprint(f"[green]β[/green] Health check complete:")
rprint(f" Articles: {stats.get('total_articles', 0)}")
rprint(f" Broken links: {sum(len(v) for v in results.get('broken_links', {}).values())}")
rprint(f" Orphans: {len(results.get('orphans', []))}")
rprint(f" Stubs: {len(results.get('stubs', []))}")
rprint(f" Undiscovered connections: {len(results.get('connections', []))}")
rprint("[dim]Full report: wiki/_meta/health_report.md[/dim]")
@app.command("cleanup")
def cleanup_cmd(
dry_run: bool = typer.Option(False, "--dry-run", help="Show what would be fixed without writing"),
):
"""Fix broken [[WikiLinks]], rebuild backlinks, report merged stubs."""
from lore.linker import find_broken_links, rebuild_all_backlinks, snap_wikilinks
from lore.config import WIKI_DIR
# 1. Find broken links
broken = find_broken_links()
if broken:
rprint(f"[yellow]Fixing broken links in {len(broken)} articles...[/yellow]")
for rel_path, bad_links in broken.items():
full = WIKI_DIR / rel_path
content = full.read_text(encoding="utf-8", errors="replace")
fixed = snap_wikilinks(content)
if fixed != content:
if dry_run:
rprint(f" [dim]would fix:[/dim] {rel_path}: {bad_links}")
else:
full.write_text(fixed, encoding="utf-8")
rprint(f" [green]fixed:[/green] {rel_path}")
else:
rprint("[green]β[/green] No broken links.")
# 2. Rebuild backlink footers
if not dry_run:
updated = rebuild_all_backlinks()
rprint(f"[green]β[/green] Backlinks rebuilt in {updated} articles.")
# 3. Report stubs
from lore.health.suggestions import suggest_new_articles
stubs = suggest_new_articles()
if stubs:
rprint(f"\n[yellow]Stub candidates ({len(stubs)}) β concepts with no article:[/yellow]")
for s in stubs[:10]:
rprint(f" [[{s}]]")
@app.command("status")
def status_cmd():
"""Show current knowledge base stats."""
from lore.config import WIKI_DIR, DATA_DIR
from lore.ingest.pipeline import get_ingestion_stats
# Wiki article counts
from collections import Counter
category_counts: Counter = Counter()
total_words = 0
import re
for md_file in WIKI_DIR.rglob("*.md"):
if md_file.name.startswith("_"):
continue
try:
content = md_file.read_text(encoding="utf-8", errors="replace")
content = re.sub(r"^---\s*\n.*?\n---\s*\n", "", content, flags=re.DOTALL)
total_words += len(content.split())
category_counts[md_file.parent.name] += 1
except Exception:
continue
table = Table(title="Wiki Status")
table.add_column("Metric", style="cyan")
table.add_column("Value", style="green")
table.add_row("Total articles", str(sum(category_counts.values())))
table.add_row("Total words", f"{total_words:,}")
for cat, cnt in sorted(category_counts.items()):
table.add_row(f" {cat}", str(cnt))
ingest_stats = get_ingestion_stats()
table.add_row("Ingested sources", str(ingest_stats.get("sources", 0)))
from lore.evolve.trajectory import get_question_trace_stats, CURIOSITY_SUGGESTED_FLAG
q_stats = get_question_trace_stats()
table.add_row("Question traces", str(q_stats.get("total", 0)))
table.add_row("Untrained traces", str(q_stats.get("untrained", 0)))
console.print(table)
if CURIOSITY_SUGGESTED_FLAG.exists():
rprint(
f"\n[bold yellow]Ready to train:[/bold yellow] "
f"{q_stats.get('untrained', 0)} new question traces.\n"
f" Run [bold]lore-train curiosity[/bold] to improve suggestions."
)
elif sum(category_counts.values()) == 0 and q_stats.get("total", 0) == 0:
rprint(
"\n[bold yellow]Fresh clone detected:[/bold yellow] "
"run [bold]bash scripts/setup.sh --demo[/bold] or [bold]uv run lore demo[/bold] "
"to seed a starter corpus."
)
def main():
app()
# Individual entry point wrappers (each spins up the full app with sys.argv)
def ingest_main():
import sys
sys.argv = ["lore", "ingest"] + sys.argv[1:]
app()
def search_main():
import sys
sys.argv = ["lore", "search"] + sys.argv[1:]
app()
def rebuild_index_main():
import sys
sys.argv = ["lore", "rebuild-index"] + sys.argv[1:]
app()
def health_main():
import sys
sys.argv = ["lore", "health"] + sys.argv[1:]
app()
def status_main():
import sys
sys.argv = ["lore", "status"] + sys.argv[1:]
app()
def cleanup_main():
import sys
sys.argv = ["lore", "cleanup"] + sys.argv[1:]
app()
def trace_main():
import sys
sys.argv = ["lore", "trace"] + sys.argv[1:]
app()
if __name__ == "__main__":
main()
|