You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: cut over metadata history to snapshot store (#158)
* feat: add llmfit sidecar enrichment for hf metadata
* feat: cut over metadata history to snapshot store
* fix: satisfy dialyzer for snapshot tasks
* fix: clarify initial history seed failures
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Brief description of changes.
26
26
-[ ] All new and existing tests pass
27
27
-[ ] My commits follow conventional commit format
28
28
-[ ] I have **NOT** edited `CHANGELOG.md` (it is auto-generated by git_ops)
29
-
-[ ] I have **NOT** directly edited files in `priv/llm_db/providers/` (they are generated by `mix llm_db.build`)
29
+
-[ ] I have **NOT** directly edited generated snapshot/history artifacts unless this PR intentionally regenerates them (`priv/llm_db/snapshot.json`, `priv/llm_db/history/**`)
-**Update model data**: `mix llm_db.pull` (fetches from configured remote sources and regenerates snapshot)
14
-
-**Backfill model history (one-time)**: `mix llm_db.history.backfill --force` (generates `priv/llm_db/history/events/*.ndjson` from git snapshot history)
15
-
-**Sync model history (incremental)**: `mix llm_db.history.sync`
16
-
-**Check history drift**: `mix llm_db.history.check`
13
+
-**Build local snapshot artifact**: `mix llm_db.build --install`
14
+
-**Pull upstream metadata**: `mix llm_db.pull`
15
+
-**Publish snapshot to GitHub Releases**: `mix llm_db.snapshot.publish`
16
+
-**Fetch published snapshot locally**: `mix llm_db.snapshot.fetch --ref latest --install`
17
+
-**Migrate reachable Git history (one-time)**: `mix llm_db.history.migrate_git --force`
18
+
-**Rebuild/publish history bundle**: `mix llm_db.history.rebuild --publish`
19
+
-**Sync published history bundle**: `mix llm_db.history.sync`
20
+
-**Check published history drift**: `mix llm_db.history.check --allow-missing`
0 commit comments