memorysync-cli 1.1.4__tar.gz → 1.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/PKG-INFO +1 -1
  2. memorysync_cli-1.2.0/src/memorysync_cli/_version.py +1 -0
  3. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/commands/memory.py +176 -38
  4. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/http.py +9 -0
  5. memorysync_cli-1.1.4/src/memorysync_cli/_version.py +0 -1
  6. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/.gitignore +0 -0
  7. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/LICENSE +0 -0
  8. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/README.md +0 -0
  9. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/pyproject.toml +0 -0
  10. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/__init__.py +0 -0
  11. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/__main__.py +0 -0
  12. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/args.py +0 -0
  13. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/commands/__init__.py +0 -0
  14. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/commands/admin.py +0 -0
  15. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/commands/init.py +0 -0
  16. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/commands/source.py +0 -0
  17. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/commands/tooling.py +0 -0
  18. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/completions.py +0 -0
  19. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/config.py +0 -0
  20. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/credentials.py +0 -0
  21. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/errors.py +0 -0
  22. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/evaluation.py +0 -0
  23. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/main.py +0 -0
  24. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/output.py +0 -0
  25. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/registry.json +0 -0
  26. {memorysync_cli-1.1.4 → memorysync_cli-1.2.0}/src/memorysync_cli/registry.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: memorysync-cli
3
- Version: 1.1.4
3
+ Version: 1.2.0
4
4
  Summary: MemorySync from your terminal. Zero dependencies.
5
5
  Project-URL: Documentation, https://docs.memorysync.io/cli
6
6
  Project-URL: Homepage, https://memorysync.io/cli
@@ -0,0 +1 @@
1
+ __version__ = "1.2.0"
@@ -510,6 +510,27 @@ def import_memories(ctx: dict) -> dict:
510
510
  records: list[dict] = []
511
511
  errors: list[str] = []
512
512
 
513
+ def _validate(number: int, entry: Any) -> None:
514
+ """Record one candidate as either usable or an error, in line order."""
515
+ if not isinstance(entry, dict):
516
+ errors.append(f"line {number}: expected an object")
517
+ return
518
+ text = entry.get("text") or entry.get("memory") or entry.get("content")
519
+ # Has to be a non-blank string, not merely truthy. ``{"text": 123}``
520
+ # would otherwise be stringified into a memory here and refused by the
521
+ # Node CLI, and the two must agree on what the file means.
522
+ if not isinstance(text, str) or not text.strip():
523
+ errors.append(f"line {number}: no text, memory or content field")
524
+ return
525
+ record: dict[str, Any] = {
526
+ "text": text.strip(),
527
+ "source": entry.get("source") or "cli-import",
528
+ "line": number,
529
+ }
530
+ if isinstance(entry.get("metadata"), dict):
531
+ record["metadata"] = entry["metadata"]
532
+ records.append(record)
533
+
513
534
  stripped = raw.strip()
514
535
  if stripped.startswith("["):
515
536
  try:
@@ -518,66 +539,183 @@ def import_memories(ctx: dict) -> dict:
518
539
  raise usage_error(f"{source_path} is not valid JSON: {error}") from None
519
540
  if not isinstance(parsed, list):
520
541
  raise usage_error(f"{source_path} must contain a JSON array.")
521
- candidates = list(enumerate(parsed, start=1))
542
+ for number, entry in enumerate(parsed, start=1):
543
+ _validate(number, entry)
522
544
  else:
523
- candidates = []
545
+ # One ordered pass. Collecting parse failures first and field failures
546
+ # afterwards reported a bad line 3 ahead of a bad line 2, which the Node
547
+ # CLI does not do and which reads as though the file were shuffled.
524
548
  for number, line in enumerate(stripped.splitlines(), start=1):
525
549
  if not line.strip():
526
550
  continue
527
551
  try:
528
- candidates.append((number, json.loads(line)))
552
+ entry = json.loads(line)
529
553
  except ValueError as error:
530
554
  errors.append(f"line {number}: {error}")
555
+ continue
556
+ _validate(number, entry)
531
557
 
532
- for number, entry in candidates:
533
- if not isinstance(entry, dict):
534
- errors.append(f"line {number}: expected an object")
535
- continue
536
- text = entry.get("text") or entry.get("memory") or entry.get("content")
537
- if not text:
538
- errors.append(f"line {number}: no text, memory or content field")
539
- continue
540
- record: dict[str, Any] = {"text": str(text), "source": entry.get("source") or "import"}
541
- if isinstance(entry.get("metadata"), dict):
542
- record["metadata"] = entry["metadata"]
543
- records.append(record)
558
+ # The dry run reports problems; it does not refuse because of them. Checking
559
+ # this before the error gate is the whole point of the flag: someone running
560
+ # --dry-run on a file they suspect is malformed wants the list of what is
561
+ # wrong, not a single error telling them to fix it first.
562
+ if flags.get("dry_run"):
563
+ preview = list(errors[:10])
564
+ trailer = len(errors) - len(preview)
565
+ return {
566
+ "data": {
567
+ "file": source_path,
568
+ "valid": len(records),
569
+ "invalid": len(errors),
570
+ "errors": errors,
571
+ },
572
+ "text": lambda: "\n".join(
573
+ line
574
+ for line in [
575
+ style.yellow("Dry run. Nothing was sent."),
576
+ f"{style.dim('valid ')} {len(records)}",
577
+ f"{style.dim('invalid ')} {len(errors)}",
578
+ *[style.dim(f" {message}") for message in preview],
579
+ style.dim(f" ... and {trailer} more") if trailer > 0 else "",
580
+ style.yellow(
581
+ "A real run would refuse this file. Pass --continue-on-error "
582
+ "to skip bad rows."
583
+ )
584
+ if errors and not flags.get("continue_on_error")
585
+ else "",
586
+ ]
587
+ if line
588
+ ),
589
+ }
544
590
 
545
- if errors:
591
+ if errors and not flags.get("continue_on_error"):
546
592
  raise usage_error(
547
- f"{source_path} has {len(errors)} invalid row(s); nothing was imported.",
548
- "; ".join(errors[:5]) + ("; ..." if len(errors) > 5 else ""),
593
+ f"{len(errors)} record(s) in {source_path} are not usable.",
594
+ f"First problem: {errors[0]}. Run again with --dry-run to see them all, "
595
+ "or --continue-on-error to skip bad rows.",
549
596
  )
550
597
  if not records:
551
598
  raise usage_error(f"{source_path} contained no records.")
552
599
 
553
- if flags.get("dry_run"):
554
- return {
555
- "data": {"would_import": len(records), "user": user},
556
- "text": lambda: style.yellow(
557
- f"Dry run. {len(records)} record(s) validated. Nothing was imported."
558
- ),
559
- }
600
+ batch_size = _resolve_batch_size(flags)
601
+ batches = [records[i : i + batch_size] for i in range(0, len(records), batch_size)]
602
+ totals = {
603
+ "total": len(records),
604
+ "imported": 0,
605
+ "memory_ids": [],
606
+ "skipped": 0,
607
+ "failed": 0,
608
+ "unreported": 0,
609
+ "failures": [],
610
+ "batches": len(batches),
611
+ "batch_size": batch_size,
612
+ }
613
+
614
+ for batch in batches:
615
+ before = totals["failed"]
616
+ items = [
617
+ {
618
+ key: value
619
+ for key, value in record.items()
620
+ if key in {"text", "source", "metadata"}
621
+ }
622
+ for record in batch
623
+ ]
624
+ try:
625
+ response = api.bulk_add_memories({"items": items}) or {}
626
+ except Exception as error: # noqa: BLE001 — reported, not raised
627
+ # The whole batch never reached the server, so every record in it is
628
+ # unaccounted for. Reported as a line range because that is what the
629
+ # operator needs to retry.
630
+ totals["failed"] += len(batch)
631
+ totals["failures"].append(
632
+ f"lines {batch[0]['line']}-{batch[-1]['line']}: {error}"
633
+ )
634
+ if not flags.get("continue_on_error"):
635
+ break
636
+ continue
560
637
 
561
- stored, skipped = [], 0
562
- for record in records:
563
- created = api.add_memory(record)
564
- memory = _normalize_memory(created)
565
- if memory["id"]:
566
- stored.append(memory["id"])
567
- else:
568
- skipped += 1
638
+ per_item = response.get("results") if isinstance(response, dict) else None
639
+ if not isinstance(per_item, list):
640
+ # The server accepted the batch without per-item detail. Counted as
641
+ # unreported rather than imported: claiming these were stored would
642
+ # be a guess, and a wrong one whenever the batch was not written.
643
+ totals["unreported"] += len(batch)
644
+ continue
645
+
646
+ for item in per_item:
647
+ index = item.get("index")
648
+ record = batch[index] if isinstance(index, int) and 0 <= index < len(batch) else None
649
+ where = f"line {record['line']}" if record else f"item {index}"
650
+ status = item.get("status")
651
+ if status == "created":
652
+ totals["imported"] += 1
653
+ totals["memory_ids"].extend(item.get("memory_ids") or [])
654
+ elif status == "skipped":
655
+ totals["skipped"] += 1
656
+ else:
657
+ totals["failed"] += 1
658
+ totals["failures"].append(f"{where}: {item.get('reason') or 'rejected'}")
659
+
660
+ if totals["failed"] > before and not flags.get("continue_on_error"):
661
+ break
569
662
 
570
663
  return {
571
- "data": {"imported": stored, "count": len(stored), "skipped": skipped, "user": user},
664
+ "data": {"file": source_path, "user": user, **totals},
572
665
  "text": lambda: "\n".join(
573
- [
574
- f"{style.green('Imported')} {len(stored)} of {len(records)}",
575
- style.dim(f" {skipped} skipped as duplicate or low value") if skipped else "",
666
+ line
667
+ for line in [
668
+ f"{style.green('Imported')} {totals['imported']} of {totals['total']}",
669
+ style.dim(f" {totals['skipped']} skipped as duplicate or low value")
670
+ if totals["skipped"]
671
+ else "",
672
+ style.dim(
673
+ f" {totals['unreported']} accepted without a per-record result"
674
+ )
675
+ if totals["unreported"]
676
+ else "",
677
+ style.red(f" {totals['failed']} failed") if totals["failed"] else "",
678
+ *[style.dim(f" {f}") for f in totals["failures"][:5]],
679
+ style.dim(f" ... and {len(totals['failures']) - 5} more")
680
+ if len(totals["failures"]) > 5
681
+ else "",
576
682
  ]
577
- ).strip(),
683
+ if line
684
+ ),
578
685
  }
579
686
 
580
687
 
688
+ # Records the server accepts in one ``/memory/bulk-add`` request. The route
689
+ # rejects a larger payload outright, so this is a ceiling and not a preference: a
690
+ # higher ``--batch-size`` is clamped rather than sent and refused.
691
+ SERVER_BULK_MAX = 50
692
+
693
+
694
+ def _resolve_batch_size(flags: dict) -> int:
695
+ """Effective batch size for this run.
696
+
697
+ Defaults to the server maximum, which is what the flag documents. A value
698
+ above the maximum is clamped instead of rejected — batch size is a transport
699
+ detail, and failing a 10,000-row import because someone asked for 500 per
700
+ request would be pedantry. The effective value is reported back in the result
701
+ so the clamp is visible rather than silent.
702
+ """
703
+ requested = flags.get("batch_size")
704
+ if requested is None:
705
+ return SERVER_BULK_MAX
706
+ try:
707
+ value = int(str(requested).strip())
708
+ except (TypeError, ValueError):
709
+ value = 0
710
+ if value < 1:
711
+ raise usage_error(
712
+ "--batch-size must be a whole number of at least 1.",
713
+ f"Got {requested!r}. The server accepts at most "
714
+ f"{SERVER_BULK_MAX} records per request.",
715
+ )
716
+ return min(value, SERVER_BULK_MAX)
717
+
718
+
581
719
  def export_memories(ctx: dict) -> dict:
582
720
  user = _require_user(ctx)
583
721
  flags, api = ctx["flags"], ctx["api"]
@@ -368,6 +368,15 @@ class ApiClient:
368
368
  """
369
369
  return self.request("GET", "/evaluation/usage")
370
370
 
371
+ def bulk_add_memories(self, body: dict) -> Any:
372
+ """Ingest many records in one request.
373
+
374
+ Answers ``207`` with a per-item outcome for each record, so a batch is
375
+ routinely part success. The caller has to read ``results`` rather than
376
+ the status code to know what happened to any given record.
377
+ """
378
+ return self.request("POST", "/memory/bulk-add", body=body)
379
+
371
380
  def add_memory(self, body: dict) -> Any:
372
381
  return self.request("POST", "/memory/add", body=body)
373
382
 
@@ -1 +0,0 @@
1
- __version__ = "1.1.4"
File without changes
File without changes