ragtime-cli 0.2.16__tar.gz → 0.2.17__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.
- {ragtime_cli-0.2.16/ragtime_cli.egg-info → ragtime_cli-0.2.17}/PKG-INFO +1 -1
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/pyproject.toml +1 -1
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17/ragtime_cli.egg-info}/PKG-INFO +1 -1
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/cli.py +2 -1
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/mcp_server.py +1 -1
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/LICENSE +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/README.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/SOURCES.txt +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/dependency_links.txt +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/entry_points.txt +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/requires.txt +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/top_level.txt +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/setup.cfg +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/__init__.py +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/audit.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/create-pr.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/generate-docs.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/handoff.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/import-docs.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/pr-graduate.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/recall.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/remember.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/save.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/start.md +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/config.py +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/db.py +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/feedback.py +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/indexers/__init__.py +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/indexers/code.py +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/indexers/docs.py +0 -0
- {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/memory.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragtime-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.17
|
|
4
4
|
Summary: Local-first memory and RAG system for Claude Code - semantic search over code, docs, and team knowledge
|
|
5
5
|
Author-email: Bret Martineau <bretwardjames@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragtime-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.17
|
|
4
4
|
Summary: Local-first memory and RAG system for Claude Code - semantic search over code, docs, and team knowledge
|
|
5
5
|
Author-email: Bret Martineau <bretwardjames@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -281,7 +281,8 @@ def _upsert_entries(db, entries, entry_type: str = "docs", label: str = " Embed
|
|
|
281
281
|
if entry_type == "code":
|
|
282
282
|
ids = [f"{e.file_path}:{e.line_number}:{e.symbol_name}" for e in batch]
|
|
283
283
|
else:
|
|
284
|
-
|
|
284
|
+
# Include chunk_index for hierarchical doc chunks
|
|
285
|
+
ids = [f"{e.file_path}:{e.chunk_index}" for e in batch]
|
|
285
286
|
|
|
286
287
|
documents = [e.content for e in batch]
|
|
287
288
|
metadatas = [e.to_metadata() for e in batch]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|