smart-commit-cli 0.1.0__tar.gz → 0.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.
- smart_commit_cli-0.2.0/.smart_commit_cache/cache.json +1 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/PKG-INFO +2 -317
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/README.md +1 -316
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/next_phase.md +1 -1
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/prd.md +1 -1
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/pyproject.toml +1 -1
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/git/scanner.py +4 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/git/service.py +2 -0
- smart_commit_cli-0.1.0/.smart_commit_cache/cache.json +0 -1
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/.env.example +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/.gitattributes +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/.gitignore +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/CHANGELOG.md +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/CONTRIBUTING.md +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/ai/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/ai/client.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/ai/reviewer.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/ai.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/analysis/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/analysis/ast_parser.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/analysis/dependency_graph.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/analysis/diff_parser.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/analysis/summarizer.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/analysis/symbol_extractor.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/benchmark.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/cache.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/cli.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/clustering/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/clustering/graph_clustering.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/clustering/heuristic.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/clustering/semantic.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/clustering.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/commit_messages.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/committer.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/config.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/constants.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/diff_parser.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/embeddings/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/embeddings/generator.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/embeddings/similarity.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/embeddings.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/exceptions.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/execution/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/execution/committer.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/git/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/git/safety.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/git_service.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/logger.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/models.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/plugins/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/plugins/base.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/plugins/django.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/plugins/fastapi.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/plugins/react.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/preview/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/preview/editor.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/preview/renderer.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/preview.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/summarizer.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/utils.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/tests/__init__.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/tests/test_clustering.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/tests/test_commit_messages.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/tests/test_diff_parser.py +0 -0
- {smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/tests/test_git_service.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"summaries_f7707885b44d20743f040267e0d7dfb4": "Added _extract_js_functions. Introduced dependencies on import tree_sitter_javascript as ts_js, import tree_sitter.", "summaries_38c82d20a03c5c23c011ec7b980b9c32": "Introduced dependencies on from ..cache import cache_manager.", "summaries_19dbd2b0784c9333dd2e15c9887c134e": "Added command_benchmark. Introduced dependencies on from .preview import PreviewRenderer, InteractiveEditor, from ric...", "summaries_9fdcbae5302c84770ce2fa1542dedbb3": "Added _generate_reason.", "summaries_21b5c866caccdc3b0cb852b01b6caee2": "Introduced dependencies on from ..cache import cache_manager.", "summaries_a3f82fe7357e6a66d247221408f03572": "Removed _check_symbol_overlap, _check_import_overlap, _filename_similarity. Introduced dependencies on from typing im...", "summaries_26608a8e89bb53e7eb0d602cd4bd5d38": "Added SymbolExtraction.", "summaries_1fed4521e7148f507c5d5b3754c4c7df": "Removed get_commit_hints, should_group_files, get_ignored_files. Introduced dependencies on from .django import Djang...", "summaries_3ad48235cc842c941fc3dd5652897e4a": "Introduced dependencies on editor, from .editor import InteractiveEditor.", "summaries_884708e8befad05a8f1bdd2af24d0681": "Removed get_confirmation, edit_messages.", "summaries_46b37c32018786696e440af3acde1904": "Added __init__, SymbolExtractor, extract_symbols. Introduced dependencies on from ..models import FileDiff, SymbolExt...", "summaries_8cf0e55c6fa9911533b4edb367e9714c": "Added BenchmarkHarness, __init__, run. Introduced dependencies on pathlib, import time, from rich.table import Table.", "summaries_ee7eb86c1e08e80c2d4206d6e804bd13": "Added _save_cache, __init__, set and more. Introduced dependencies on import hashlib, pathlib, hashlib.", "summaries_064200f53ebaecc9706b88b7d11f731f": "Added get_commit_hints, DjangoPlugin, get_ignored_files. Introduced dependencies on from .base import Plugin, models,...", "summaries_33ae44914ed1b80b157c3abec6e05775": "Added get_commit_hints, FastAPIPlugin, get_ignored_files. Introduced dependencies on from .base import Plugin, models...", "summaries_3cdb1e4acac84ec15485964c7d3d32fc": "Added get_commit_hints, ReactPlugin, should_group_files and more. Introduced dependencies on from .base import Plugin...", "summaries_0293e572a27e36cdd97473558cb160c5": "Added InteractiveEditor, _action_delete, __init__ and more. Introduced dependencies on uuid, from .renderer import Pr...", "summaries_1cf2566b79cab33f4d50464f4b159119": "Added new content", "summaries_274a78a8c939c5b5a438d03a82704fd1": "Added test. Introduced dependencies on import os, networkx, os.", "dependency_graph_77928d4edaed701f6e3835d1b6d2292c": [["smart_commit/execution/committer.py", "utils"], ["smart_commit/clustering/__init__.py", "heuristic"], ["smart_commit/cli.py", "git"], ["smart_commit/utils.py", "os"], ["smart_commit/config.py", "typing"], ["dummy_file.py", "networkx"], ["smart_commit/utils.py", "typing"], ["smart_commit/plugins/base.py", "react"], ["smart_commit/preview/renderer.py", "constants"], ["smart_commit/git/service.py", "models"], ["tests/test_git_service.py", "smart_commit.git_service"], ["smart_commit/benchmark.py", "pathlib"], ["smart_commit/embeddings/similarity.py", "logger"], ["smart_commit/ai/reviewer.py", "logger"], ["smart_commit/ai/client.py", "re"], ["smart_commit/logger.py", "typing"], ["smart_commit/embeddings/generator.py", "logger"], ["smart_commit/embeddings/__init__.py", "similarity"], ["smart_commit/git_service.py", "git.exc"], ["smart_commit/analysis/summarizer.py", "models"], ["smart_commit/clustering/graph_clustering.py", "models"], ["smart_commit/plugins/django.py", "typing"], ["smart_commit/benchmark.py", "git"], ["smart_commit/diff_parser.py", "re"], ["smart_commit/clustering/graph_clustering.py", "numpy"], ["smart_commit/embeddings/similarity.py", "analysis.dependency_graph"], ["smart_commit/preview/editor.py", "rich.console"], ["smart_commit/analysis/summarizer.py", "diff_parser"], ["smart_commit/preview/renderer.py", "rich.table"], ["smart_commit/clustering/semantic.py", "analysis.dependency_graph"], ["smart_commit/preview/editor.py", "typing"], ["smart_commit/git/service.py", "subprocess"], ["smart_commit/utils.py", "sys"], ["smart_commit/plugins/base.py", "logger"], ["tests/test_commit_messages.py", "pytest"], ["smart_commit/plugins/fastapi.py", "base"], ["smart_commit/benchmark.py", "time"], ["smart_commit/logger.py", "sys"], ["smart_commit/preview/renderer.py", "rich.panel"], ["smart_commit/committer.py", "models"], ["smart_commit/cache.py", "logger"], ["smart_commit/config.py", "pathlib"], ["smart_commit/utils.py", "pathlib"], ["smart_commit/git_service.py", "models"], ["smart_commit/git/__init__.py", "scanner"], ["smart_commit/analysis/symbol_extractor.py", "models"], ["smart_commit/preview/__init__.py", "editor"], ["smart_commit/plugins/django.py", "base"], ["smart_commit/logger.py", "pathlib"], ["smart_commit/clustering/heuristic.py", "logger"], ["smart_commit/diff_parser.py", "models"], ["smart_commit/preview/renderer.py", "models"], ["smart_commit/commit_messages.py", "config"], ["smart_commit/git/safety.py", "exceptions"], ["smart_commit/git/__init__.py", "service"], ["smart_commit/clustering/semantic.py", "embeddings"], ["tests/test_git_service.py", "pathlib"], ["smart_commit/cli.py", "exceptions"], ["smart_commit/preview.py", "rich.table"], ["smart_commit/git/scanner.py", "exceptions"], ["tests/test_git_service.py", "git"], ["smart_commit/config.py", "yaml"], ["smart_commit/clustering.py", "sklearn.cluster"], ["dummy_file.py", "os"], ["smart_commit/embeddings/similarity.py", "typing"], ["smart_commit/plugins/react.py", "models"], ["smart_commit/ai/reviewer.py", "typing"], ["smart_commit/analysis/__init__.py", "diff_parser"], ["smart_commit/clustering/graph_clustering.py", "networkx"], ["smart_commit/cli.py", "config"], ["smart_commit/cli.py", "rich.progress"], ["smart_commit/clustering/semantic.py", "typing"], ["tests/test_commit_messages.py", "smart_commit.models"], ["smart_commit/clustering.py", "models"], ["smart_commit/clustering.py", "numpy"], ["smart_commit/logger.py", "logging"], ["smart_commit/committer.py", "git_service"], ["smart_commit/cli.py", "plugins"], ["smart_commit/ai/client.py", "typing"], ["smart_commit/plugins/base.py", "fastapi"], ["smart_commit/analysis/symbol_extractor.py", "typing"], ["smart_commit/embeddings/generator.py", "cache"], ["smart_commit/plugins/base.py", "typing"], ["smart_commit/diff_parser.py", "typing"], ["smart_commit/preview.py", "models"], ["tests/test_git_service.py", "pytest"], ["smart_commit/analysis/ast_parser.py", "tree_sitter"], ["smart_commit/clustering/semantic.py", "logger"], ["smart_commit/ai/reviewer.py", "client"], ["smart_commit/cache.py", "typing"], ["smart_commit/cli.py", "constants"], ["smart_commit/ai/client.py", "constants"], ["smart_commit/ai/client.py", "logger"], ["smart_commit/analysis/symbol_extractor.py", "logger"], ["smart_commit/plugins/fastapi.py", "models"], ["smart_commit/constants.py", "pathlib"], ["smart_commit/ai/reviewer.py", "json"], ["smart_commit/clustering/semantic.py", "pathlib"], ["smart_commit/ai/__init__.py", "client"], ["smart_commit/analysis/symbol_extractor.py", "ast_parser"], ["smart_commit/ai.py", "json"], ["smart_commit/analysis/dependency_graph.py", "os"], ["smart_commit/analysis/dependency_graph.py", "typing"], ["smart_commit/ai.py", "litellm"], ["smart_commit/utils.py", "json"], ["smart_commit/plugins/base.py", "pathlib"], ["smart_commit/commit_messages.py", "models"], ["smart_commit/git/__init__.py", "safety"], ["smart_commit/git/service.py", "typing"], ["smart_commit/preview/renderer.py", "rich.tree"], ["smart_commit/plugins/__init__.py", "base"], ["smart_commit/benchmark.py", "rich.table"], ["smart_commit/models.py", "enum"], ["smart_commit/clustering/semantic.py", "graph_clustering"], ["smart_commit/git/service.py", "scanner"], ["smart_commit/cache.py", "pathlib"], ["smart_commit/clustering/graph_clustering.py", "typing"], ["smart_commit/analysis/dependency_graph.py", "logger"], ["smart_commit/execution/committer.py", "models"], ["smart_commit/clustering/__init__.py", "semantic"], ["smart_commit/clustering/graph_clustering.py", "networkx.algorithms.community"], ["smart_commit/cli.py", "analysis"], ["smart_commit/models.py", "dataclasses"], ["smart_commit/cli.py", "models"], ["smart_commit/analysis/dependency_graph.py", "ast_parser"], ["smart_commit/git/service.py", "logger"], ["smart_commit/analysis/diff_parser.py", "re"], ["smart_commit/git/scanner.py", "models"], ["tests/test_clustering.py", "pytest"], ["smart_commit/summarizer.py", "diff_parser"], ["smart_commit/utils.py", "datetime"], ["smart_commit/analysis/dependency_graph.py", "pathlib"], ["smart_commit/preview.py", "rich.panel"], ["smart_commit/committer.py", "typing"], ["smart_commit/analysis/summarizer.py", "logger"], ["smart_commit/clustering/graph_clustering.py", "logger"], ["smart_commit/preview/editor.py", "rich.prompt"], ["smart_commit/benchmark.py", "analysis"], ["smart_commit/logger.py", "datetime"], ["smart_commit/preview/editor.py", "renderer"], ["smart_commit/commit_messages.py", "typing"], ["smart_commit/git_service.py", "typing"], ["smart_commit/git/service.py", "pathlib"], ["smart_commit/preview/renderer.py", "rich.console"], ["smart_commit/git/scanner.py", "subprocess"], ["smart_commit/cli.py", "analysis.symbol_extractor"], ["tests/test_diff_parser.py", "smart_commit.diff_parser"], ["smart_commit/embeddings/generator.py", "models"], ["smart_commit/clustering.py", "embeddings"], ["smart_commit/embeddings/generator.py", "numpy"], ["smart_commit/execution/__init__.py", "committer"], ["smart_commit/plugins/base.py", "django"], ["tests/test_commit_messages.py", "smart_commit.commit_messages"], ["smart_commit/analysis/diff_parser.py", "models"], ["tests/test_git_service.py", "git.exc"], ["smart_commit/git/scanner.py", "dataclasses"], ["smart_commit/benchmark.py", "analysis.symbol_extractor"], ["smart_commit/git/scanner.py", "constants"], ["smart_commit/cli.py", "execution"], ["smart_commit/plugins/react.py", "typing"], ["smart_commit/committer.py", "pathlib"], ["smart_commit/ai.py", "config"], ["smart_commit/embeddings.py", "models"], ["smart_commit/cli.py", "clustering"], ["smart_commit/embeddings.py", "numpy"], ["smart_commit/utils.py", "hashlib"], ["smart_commit/clustering.py", "typing"], ["tests/test_diff_parser.py", "pytest"], ["tests/test_clustering.py", "smart_commit.models"], ["smart_commit/ai/client.py", "json"], ["smart_commit/git_service.py", "pathlib"], ["smart_commit/execution/committer.py", "logger"], ["smart_commit/analysis/ast_parser.py", "tree_sitter_javascript"], ["smart_commit/git/safety.py", "logger"], ["smart_commit/plugins/django.py", "models"], ["smart_commit/cli.py", "sys"], ["smart_commit/cli.py", "logger"], ["smart_commit/preview.py", "rich.console"], ["smart_commit/ai/client.py", "litellm"], ["smart_commit/git_service.py", "git"], ["smart_commit/ai/__init__.py", "reviewer"], ["smart_commit/benchmark.py", "clustering"], ["smart_commit/cli.py", "commit_messages"], ["smart_commit/utils.py", "uuid"], ["smart_commit/preview/editor.py", "models"], ["smart_commit/preview.py", "typing"], ["smart_commit/analysis/dependency_graph.py", "cache"], ["smart_commit/embeddings/similarity.py", "constants"], ["smart_commit/clustering/heuristic.py", "models"], ["smart_commit/embeddings/generator.py", "constants"], ["smart_commit/cache.py", "json"], ["smart_commit/embeddings/similarity.py", "generator"], ["smart_commit/ai/client.py", "time"], ["smart_commit/plugins/react.py", "base"], ["smart_commit/embeddings.py", "sentence_transformers"], ["smart_commit/clustering/semantic.py", "heuristic"], ["smart_commit/plugins/fastapi.py", "typing"], ["smart_commit/config.py", "dataclasses"], ["smart_commit/preview/editor.py", "uuid"], ["smart_commit/summarizer.py", "models"], ["smart_commit/analysis/summarizer.py", "cache"], ["smart_commit/config.py", "os"], ["smart_commit/benchmark.py", "analysis.dependency_graph"], ["smart_commit/models.py", "typing"], ["smart_commit/embeddings.py", "typing"], ["smart_commit/logger.py", "constants"], ["smart_commit/analysis/ast_parser.py", "typing"], ["smart_commit/cli.py", "argparse"], ["smart_commit/analysis/ast_parser.py", "ast"], ["smart_commit/embeddings/__init__.py", "generator"], ["smart_commit/analysis/diff_parser.py", "logger"], ["smart_commit/analysis/__init__.py", "summarizer"], ["smart_commit/clustering/semantic.py", "sklearn.cluster"], ["smart_commit/analysis/ast_parser.py", "logger"], ["smart_commit/embeddings/similarity.py", "models"], ["smart_commit/git/service.py", "utils"], ["smart_commit/ai/reviewer.py", "models"], ["smart_commit/embeddings/similarity.py", "numpy"], ["smart_commit/git/safety.py", "typing"], ["smart_commit/clustering/semantic.py", "models"], ["smart_commit/clustering/semantic.py", "numpy"], ["smart_commit/ai/client.py", "exceptions"], ["smart_commit/ai.py", "models"], ["smart_commit/cli.py", "typing"], ["smart_commit/summarizer.py", "typing"], ["smart_commit/git/scanner.py", "typing"], ["smart_commit/plugins/base.py", "models"], ["smart_commit/benchmark.py", "rich.console"], ["smart_commit/cli.py", "preview"], ["smart_commit/analysis/symbol_extractor.py", "diff_parser"], ["smart_commit/ai/client.py", "config"], ["smart_commit/constants.py", "enum"], ["tests/test_clustering.py", "smart_commit.clustering"], ["smart_commit/analysis/dependency_graph.py", "networkx"], ["smart_commit/cli.py", "benchmark"], ["smart_commit/cache.py", "hashlib"], ["smart_commit/committer.py", "utils"], ["smart_commit/config.py", "dotenv"], ["smart_commit/embeddings/generator.py", "sentence_transformers"], ["smart_commit/embeddings/similarity.py", "dataclasses"], ["smart_commit/preview/__init__.py", "renderer"], ["smart_commit/git_service.py", "utils"], ["smart_commit/plugins/base.py", "abc"], ["smart_commit/git/safety.py", "pathlib"], ["smart_commit/clustering/semantic.py", "constants"], ["smart_commit/embeddings/generator.py", "typing"], ["smart_commit/cli.py", "pathlib"], ["smart_commit/cli.py", "ai"], ["smart_commit/execution/committer.py", "git"], ["smart_commit/ai.py", "typing"], ["smart_commit/git/scanner.py", "pathlib"]], "summaries_943f2588ea9722c748559a67cc995b24": "Modified file", "summaries_07aee2946b00c8a027fe803f7fafa791": "Modified content", "summaries_9486ff7628d5828cf9df32eff8c5a1b5": "Modified content", "summaries_ba653a6f9d3f561be10b01fdb53eb149": "Modified content", "embeddings_060fdddbb21cbc200dfa3569112bd371": [0.00868245679885149, 0.0672384649515152, 0.009717844426631927, 0.03262874856591225, 0.0041766781359910965, -0.05039624869823456, -0.004341872874647379, -0.015909681096673012, 0.005542492028325796, 0.06787817925214767, 0.09819401800632477, 0.08816126734018326, -0.03731366991996765, -0.027016151696443558, 0.031383492052555084, 0.049756184220314026, 0.028998877853155136, 0.05866396054625511, -0.020869920030236244, -0.012006169185042381, -0.003084010211750865, 0.09552628546953201, 0.13310670852661133, 0.07703733444213867, 0.06093759089708328, -0.0010524149984121323, 0.003319905837997794, 0.07708806544542313, 0.024389145895838737, 0.0054212589748203754, 0.054249413311481476, 0.03392761945724487, 0.026981504634022713, -0.006114289630204439, 0.040779609233140945, 0.06432292610406876, -0.08802514523267746, -0.07044102996587753, 0.09529993683099747, -0.039959803223609924, 0.012327581644058228, 0.04958239197731018, -0.046736281365156174, -0.044388461858034134, 0.009973402135074139, 0.014157974161207676, 0.005842919927090406, -0.07559867203235626, -0.046078238636255264, 0.0329299159348011, -0.021054888144135475, 0.0274349357932806, -0.10925039649009705, 0.0062886918894946575, -0.0039225975051522255, -0.008810042403638363, -0.0019664629362523556, 0.02924269437789917, 0.01342636626213789, 0.02562289498746395, 0.10778883099555969, 0.03609728813171387, 0.02092796377837658, -0.031049324199557304, -0.03843780234456062, -0.03480812534689903, 0.04222862049937248, -0.018722936511039734, 0.009034423157572746, -0.060816045850515366, 0.07321719080209732, -0.06231284141540527, -0.04588892310857773, -0.061804160475730896, 0.047114405781030655, 0.02476658672094345, -0.07010899484157562, -0.02514304593205452, -0.029563769698143005, -0.08660555630922318, -0.057832732796669006, -0.09413879364728928, 0.02567627839744091, -0.028221143409609795, -0.028204547241330147, -0.02080349065363407, 0.048628050833940506, 0.02672496996819973, 0.07761520892381668, -0.033124249428510666, 0.04639790207147598, -0.048548489809036255, 0.027744553983211517, -0.06303855031728745, -0.0912259891629219, -0.02343943528831005, 0.040719982236623764, 0.016779467463493347, 0.02960134483873844, 0.025049058720469475, 0.05259879305958748, 0.08790354430675507, -0.07777057588100433, 0.03370678797364235, 0.11068733781576157, 0.08431284874677658, 0.055248964577913284, 0.018421627581119537, -0.031077133491635323, 0.03110218606889248, 0.029244473204016685, 0.06402803212404251, 0.001859556999988854, -0.06905292719602585, -0.08460558205842972, 0.005623327102512121, -0.006846977397799492, -0.015551842749118805, -0.004009881056845188, 0.057386767119169235, 0.14682039618492126, -0.105137400329113, -0.05710301175713539, 0.01968497410416603, -0.03480624407529831, -0.039112553000450134, 0.01060103252530098, -2.2814132114003193e-33, 0.1043630912899971, 0.008217988535761833, -0.0007350892992690206, 0.033536236733198166, 0.007673817221075296, -0.004306487273424864, 0.03582415357232094, -0.05475292727351189, -0.02394988387823105, -0.0026502013206481934, 0.03243842348456383, -0.01958652213215828, -0.013418527320027351, 0.012427771463990211, -0.17234599590301514, -0.03245081380009651, -0.03393218666315079, -0.039108045399188995, 0.08668281137943268, 0.07714960724115372, -0.05284088850021362, 0.02544184774160385, 0.0016829685773700476, -0.07577633857727051, 0.010792039334774017, 0.07984959334135056, -0.011479668319225311, 0.06670460850000381, -0.11865293234586716, -0.01934497430920601, 0.014545607380568981, -0.0013342623133212328, 0.04302162677049637, 0.037849556654691696, 0.030650489032268524, 0.0019309194758534431, 0.046059779822826385, -0.03558237478137016, -0.03239233046770096, -0.07470232248306274, 0.06826379150152206, 0.059493761509656906, -0.045816417783498764, -0.05414017289876938, -0.09378115832805634, 0.0927676260471344, 0.00958165805786848, 0.03360382840037346, 0.041233986616134644, -0.08150355517864227, 0.017750978469848633, 0.06998223811388016, -0.04314137622714043, -0.000675951421726495, -0.03805096819996834, -0.015231199562549591, 0.07344122231006622, -0.018816202878952026, 0.06458751857280731, -0.020752068608999252, 0.043170757591724396, 0.018900221213698387, -0.03223516792058945, 0.0017670735251158476, 0.04065649211406708, 0.07867556810379028, 0.020997753366827965, 0.09296025335788727, 0.003953051287680864, 0.026855112984776497, 0.017700564116239548, 0.04661474749445915, -0.03650633618235588, -0.06598402559757233, -0.06621086597442627, -0.06092517822980881, -0.04890027642250061, 0.06761474162340164, -0.0504535436630249, -0.008028076961636543, 0.050039466470479965, 0.02823130413889885, -0.09683743864297867, 0.018380576744675636, -0.0734843909740448, 0.024059263989329338, 0.025096692144870758, 0.0025410244707018137, -0.002433990128338337, -0.005751217715442181, 0.014965110458433628, 0.006740678567439318, 0.07375933974981308, -0.01322944089770317, -0.0610143207013607, 1.8213318856571763e-33, -0.056156836450099945, -0.04699191823601723, -0.03161275014281273, 0.11636477708816528, -0.002291254233568907, -0.051527876406908035, -0.030908333137631416, 0.06401456892490387, -0.031029216945171356, 0.03745270520448685, -0.0010977623751387, -0.11510380357503891, -0.03714388608932495, -0.04059940204024315, 0.05170338228344917, 0.010730263777077198, -0.050509318709373474, -0.044831011444330215, -0.0006073996191844344, 0.0037480024620890617, 0.017242345958948135, 0.06729596853256226, 0.05085144191980362, 0.021344857290387154, 0.029572131112217903, -0.026831824332475662, -0.07192011922597885, 0.023732976987957954, -0.030064785853028297, -0.07869703322649002, -0.004586924333125353, 0.01388870645314455, -0.08586852997541428, -0.03354287147521973, 0.022606398910284042, -0.02870142087340355, -0.0066851056180894375, 0.054898325353860855, -0.02247302606701851, 0.07116580009460449, 0.0636536180973053, 0.023434389382600784, 0.012486693449318409, 0.1115308329463005, 0.052093565464019775, -0.028905823826789856, -0.010750848799943924, -0.006915525998920202, -0.018829382956027985, 0.00010659357940312475, 0.07245180010795593, -0.04169037938117981, -0.03776015341281891, -0.043359991163015366, 0.10434738546609879, 0.06445705890655518, -0.01617000624537468, 0.0038065230473876, 0.0016907899407669902, -0.08506890386343002, 0.007529589347541332, -0.07955143600702286, -0.018579397350549698, -0.017887307330965996, -0.011477887630462646, 0.052454784512519836, -0.037934809923172, -0.07246630638837814, -0.0062177907675504684, 0.03732308745384216, 0.05259087309241295, -0.008110322058200836, 0.027394089847803116, -0.02329261787235737, 0.03269944339990616, -0.049170780926942825, -0.010793411172926426, -0.04590383172035217, 0.026050850749015808, 0.015905611217021942, -0.02666383795440197, 0.02996337041258812, -0.013180680572986603, 0.03374616801738739, 0.024956829845905304, 0.018009331077337265, -0.09970148652791977, 0.032935772091150284, -0.06997684389352798, -0.03992980718612671, -0.03920578584074974, -0.0048385318368673325, -0.021544313058257103, -0.012283959425985813, -0.0361473485827446, -1.773485003297992e-08, -0.07284064590930939, -0.03799929469823837, -0.15246140956878662, 0.10472673922777176, 0.05031260475516319, -0.05396628379821777, -0.0072065917775034904, -0.02080713026225567, 0.04012579098343849, -0.02959195151925087, 0.07630548626184464, -0.005303079728037119, -0.05243238806724548, 0.009041600860655308, -0.07566153258085251, -0.05183039605617523, -0.059590090066194534, -0.002747948979958892, -0.02887873910367489, -0.006177236791700125, -0.003507219022139907, 0.06606081128120422, 0.0447007492184639, -0.03939902037382126, 0.0455658845603466, 0.06895504891872406, 0.05904915928840637, 0.06666607409715652, -0.039762821048498154, -0.03729565441608429, 0.029020382091403008, -0.09558194875717163, -0.01940849795937538, 0.014380049891769886, 0.03230749070644379, -0.034193605184555054, 0.07230038940906525, -0.014722267165780067, 0.04884752258658409, 0.034277405589818954, 0.020987268537282944, -0.021439237520098686, -0.05081584304571152, 0.06484623998403549, -0.058013565838336945, -0.031043902039527893, -0.03218746930360794, -0.01952330581843853, 0.014535417780280113, -0.018411235883831978, 0.05207936465740204, -0.07946882396936417, 0.007812841795384884, -0.03326966241002083, -0.0017340404447168112, -0.07917223125696182, 0.10737671703100204, 0.10224956274032593, 0.059778064489364624, 0.0023787778336554766, 0.1131221204996109, -0.013749994337558746, -0.01228763721883297, -0.08491025865077972], "embeddings_4c26dd62c784f7ea50efb8c15659bb78": [-0.04652395844459534, 0.06996835768222809, -0.01230334397405386, -0.030580220744013786, -0.022867726162075996, -0.02950180321931839, -0.05602505803108215, 0.01901301182806492, 0.034517962485551834, 0.024570390582084656, 0.04429972916841507, 0.006404370069503784, 0.013579572550952435, -0.06932664662599564, -0.06753896176815033, -0.00220580049790442, -0.030627302825450897, 0.15700191259384155, 0.05560668557882309, 0.01835206151008606, 0.04624857008457184, 0.05085784196853638, 0.10343833267688751, -0.0002527269534766674, -0.012117888778448105, 0.1278761327266693, 0.005166627001017332, 0.11268417537212372, 0.053202178329229355, -0.09928686171770096, 0.02212965115904808, 0.09345456957817078, 0.005925267469137907, -0.057698000222444534, 0.0845169648528099, 0.1166628897190094, -0.02118951641023159, -0.026612890884280205, 0.08371928334236145, -0.006056385114789009, 0.025889020413160324, -0.006178964860737324, -0.06458324939012527, 0.023850727826356888, -0.07893869280815125, 0.024797705933451653, 0.006462679710239172, -0.022714415565133095, 0.02124149724841118, -0.04896378144621849, -0.021364672109484673, 0.003538736142218113, -0.06226370856165886, -0.0721416249871254, -0.0764450952410698, -0.04980894923210144, 0.04529879614710808, 0.032127704471349716, 0.01923993043601513, -0.09309111535549164, 0.0032239325810223818, 0.11890845000743866, -0.026899538934230804, 0.03818214684724808, 0.06542365998029709, 0.010436530224978924, -0.003949550446122885, -0.01885911077260971, -0.019832493737339973, -0.05524667724967003, -0.05438739061355591, -0.03710075840353966, 0.027827059850096703, 0.0814933255314827, -0.06909817457199097, -0.013528217561542988, -0.06436099112033844, -0.006176133174449205, -0.007307264022529125, -0.02770897001028061, 0.13399353623390198, -0.06212761998176575, -0.007097239140421152, -0.044617194682359695, 0.08576029539108276, 0.04027958959341049, -0.025532394647598267, 0.0508592389523983, 0.011136144399642944, 0.06053593382239342, 0.010218536481261253, -0.04751918092370033, 0.045270223170518875, -0.029738223180174828, -0.02418130449950695, -0.034719787538051605, -0.09678421914577484, -0.029588941484689713, 0.03942156955599785, 0.038851432502269745, 0.029597410932183266, 0.0732107013463974, -0.044647470116615295, 0.035744182765483856, 0.05425200238823891, -0.021074026823043823, -0.058214105665683746, 0.013853584416210651, -0.003801489481702447, 0.08344435691833496, -0.022475555539131165, 0.032199278473854065, -0.09956115484237671, -0.09495455771684647, -0.0029926372226327658, 0.01213613897562027, 0.0032652136869728565, 0.019482122734189034, -0.036740485578775406, -0.0306935366243124, 0.035204656422138214, -0.017057962715625763, 0.007371329236775637, 0.04606308415532112, -0.014390995725989342, -0.05462603271007538, -0.010653354227542877, 1.6096293938359133e-33, 0.07638313621282578, -0.03732231259346008, 0.04911211505532265, 0.10001291334629059, 0.00878292415291071, 0.03308635205030441, 0.03586992248892784, -0.098706915974617, -0.05290309339761734, -0.05677454546093941, -0.01595206931233406, -0.0588306188583374, -0.062228262424468994, -0.021128054708242416, -0.06175054609775543, -0.03547591716051102, -0.0456455834209919, -0.008569770492613316, 0.00040964814252220094, 0.01623496413230896, -0.009934437461197376, 0.007483704015612602, -0.024890756234526634, -0.01307167299091816, -0.03954269737005234, 0.08809354156255722, -0.06167815998196602, 0.00992689561098814, -0.06498289853334427, -0.01346000749617815, 0.004654061980545521, 0.0012822748394683003, -0.016216790303587914, 0.05108051374554634, -0.04150689020752907, -0.09417121112346649, 0.04434999078512192, -0.07369238138198853, 0.008157629519701004, -0.000759483955334872, 0.05617021396756172, -0.08291568607091904, 0.07750672101974487, -0.03480055183172226, -0.02941953018307686, -0.002010093303397298, -0.05339540168642998, 0.08545973151922226, -0.023404207080602646, 0.0273395087569952, 0.100332111120224, 0.06080145016312599, -0.0901184007525444, -0.03494320064783096, -0.06926976144313812, -0.0252836886793375, -0.02527228370308876, 0.04529237002134323, 0.04381311684846878, 0.034521717578172684, 0.05770737677812576, 0.11089794337749481, 0.016928598284721375, -0.04081746190786362, 0.10533270239830017, 0.045796286314725876, 0.033776119351387024, -0.00829558726400137, -0.04837699234485626, 0.059819549322128296, -0.04043642058968544, -0.05081922560930252, 0.06331921368837357, 0.03433631733059883, 0.010184927843511105, -0.033035699278116226, -0.08075124025344849, 0.04134409502148628, -0.061168551445007324, -0.011012948118150234, 0.05203746631741524, 0.03296466916799545, 0.019240379333496094, -0.06332184374332428, -0.036788471043109894, 0.02397848293185234, 0.09561306983232498, -0.013266363181173801, 0.01930653490126133, -0.07589713484048843, 0.13428592681884766, -0.08291704952716827, -0.033783238381147385, -0.023185240104794502, 0.013959926553070545, -2.5364569146203693e-33, -0.025755735114216805, -0.014831308275461197, -0.026244383305311203, 0.05973474681377411, -0.07444032281637192, -0.02139299549162388, -0.035781774669885635, 0.02884429693222046, -0.05286822468042374, 0.0053056650795042515, -0.07485729455947876, -0.025051726028323174, -0.02747337333858013, -0.03431950509548187, 0.00732031324878335, 0.03329099714756012, -0.013966101221740246, -0.023999759927392006, -0.06795443594455719, 0.018189562484622, -0.0003041159943677485, 0.05538066104054451, 0.09101589769124985, 0.003482050495222211, 0.06825563311576843, -0.03197438269853592, 0.06112390011548996, 0.04509368911385536, 0.04915110394358635, -0.08278188109397888, 0.008779303170740604, 0.046130020171403885, -0.09279044717550278, -0.04856308549642563, -0.06844040006399155, -0.030793601647019386, -0.0425482876598835, 0.05938950926065445, -0.005604440346360207, 0.06197642162442207, 0.00662847189232707, -0.009257296100258827, -0.05471755564212799, 0.015747712925076485, -0.020612146705389023, -0.05617090314626694, 0.0021221423521637917, -0.055605292320251465, 0.1208449974656105, 0.029665859416127205, 0.000906089786440134, 0.07545497268438339, 0.09806829690933228, -0.023068679496645927, 0.0806983932852745, 0.007744624745100737, -0.04031385853886604, -0.013145637698471546, 0.04884319007396698, -0.0326225683093071, -0.014957357197999954, 0.0030048119369894266, -0.07146857678890228, 0.0076850117184221745, 0.0824548751115799, 0.05145576223731041, -0.053906917572021484, -0.05400589480996132, -0.01516232080757618, 0.06071733310818672, 0.03986740484833717, -0.020549215376377106, 0.06757022440433502, -0.021720699965953827, 0.11360345035791397, -0.04101080447435379, 0.02948467619717121, 0.0037429716903716326, -0.014144864864647388, -0.01596957817673683, -0.007790930103510618, -0.04503818228840828, -0.04343903809785843, 0.039282284677028656, 0.029463494196534157, -0.08075195550918579, -0.06244558095932007, -0.016725292429327965, -0.00024179398315027356, -0.01767222210764885, -0.007136594038456678, 0.04311458021402359, 0.026188647374510765, 0.020027993246912956, 0.03542822226881981, -1.767665658292117e-08, -0.04069129750132561, -0.054379966109991074, -0.087477907538414, 0.06881158798933029, 0.11274820566177368, 0.026438724249601364, -0.05250202864408493, -0.0471976138651371, 0.008059678599238396, -0.09577983617782593, -0.016734136268496513, -0.0297996923327446, 0.05745527148246765, 0.001056932844221592, -0.019440049305558205, 0.03266019746661186, 0.01017868984490633, 0.015631532296538353, -0.0013066543033346534, -0.05423232167959213, -0.038448549807071686, 0.04699518904089928, -0.04991309717297554, -0.02311934530735016, 0.06098125874996185, 0.07945266366004944, 0.08557713031768799, -0.010157980024814606, -0.04296267777681351, 0.046535272151231766, 0.0066029285080730915, -0.03032667748630047, -0.03959093615412712, 0.04008728638291359, -0.01812734454870224, 0.020765891298651695, 0.011966845020651817, 0.024237047880887985, -0.06409785896539688, 0.024909716099500656, 0.03662408888339996, -0.05865699425339699, -0.05726168677210808, 0.07686600834131241, -0.031512171030044556, 0.06125155836343765, -0.022681808099150658, -0.08214928209781647, 0.018834425136446953, -0.0018483537714928389, 0.04127556458115578, 0.04578416422009468, 0.03820856660604477, -0.07481306046247482, -0.018787376582622528, 0.023519029840826988, 0.10817458480596542, 0.03773026168346405, 0.0582866296172142, 0.026915594935417175, -0.060402847826480865, -0.01956671103835106, 0.062014274299144745, -0.027365176007151604], "summaries_ac972c2ded9cff83ae197429f5ee3185": "Modified content", "summaries_b4e3cbb2b528a9f1c9c1758c069bb774": "Modified content", "summaries_ab59b7aaa0be8ba7382d8b8bb609697b": "Modified content", "summaries_88446899273efb0b3223d4e53dce7e3c": "Added new content", "summaries_8e7b1f714d7463a1c16339a3fc9c2f5f": "Added new content", "embeddings_525198dd251075928e95ade08febae99": [0.052158042788505554, 0.019993115216493607, -0.049220334738492966, 0.017570754513144493, 0.06961031258106232, 0.02003178559243679, 0.04669427499175072, -0.00033903896110132337, 0.004176491871476173, 0.08886253088712692, 0.006869628559798002, 0.11976560205221176, 0.08388572186231613, -0.09694749116897583, -0.0868125930428505, 0.05747641995549202, -0.01119732391089201, 0.09419582039117813, -0.02066531404852867, 0.005222732666879892, -0.011868787929415703, 0.12290497124195099, 0.04758547991514206, 0.022590206936001778, -0.012065354734659195, 0.07186224311590195, -0.020164089277386665, 0.0820721983909607, 0.004098896868526936, -0.09176524728536606, 0.029765905812382698, 0.0745365247130394, 0.0458548367023468, 0.023660609498620033, -0.023692863062024117, 0.08029011636972427, 0.006179227959364653, -0.0881621465086937, 0.0660131424665451, -0.023309672251343727, -0.02036440558731556, 0.04339807108044624, -0.002270087832584977, 0.008328567259013653, -0.049188461154699326, 0.012015835382044315, -0.021563179790973663, -0.04700825363397598, -0.02019471861422062, 0.06568058580160141, -0.03790665790438652, -0.014254852198064327, -0.12573063373565674, 0.02411588467657566, 0.00291653024032712, -0.018684199079871178, -0.02095584012567997, 0.027259446680545807, -0.0049235704354941845, -0.09262746572494507, 0.034979138523340225, 0.06879004091024399, -0.01124664768576622, 0.059897661209106445, 0.055917806923389435, -0.021026238799095154, 0.051848217844963074, -0.0009686549892649055, -0.04296691343188286, -0.09673432260751724, 0.015215037390589714, -0.03567425534129143, -0.026512451469898224, 0.06837357580661774, -0.03030800260603428, 0.02597704716026783, -0.020983077585697174, -0.005906627047806978, 0.020578637719154358, -0.06800070405006409, -0.04378579929471016, -0.005241194739937782, 0.06739011406898499, -0.05434831976890564, 0.0084135252982378, 0.026768656447529793, 0.010489633306860924, 0.0595950223505497, 0.07841609418392181, 0.023959530517458916, 0.01826317049562931, 0.025479096919298172, 0.05088799446821213, 0.011552289128303528, -0.06031397730112076, -0.002766714431345463, -0.031143181025981903, 0.05085175111889839, 0.05032239481806755, 0.10936610400676727, 0.034177813678979874, 0.09847577661275864, -0.0592290461063385, 0.022746900096535683, 0.0559798888862133, -0.047081828117370605, 0.031718600541353226, 0.08784250915050507, -0.014081703498959541, 0.037075143307447433, 0.01305422279983759, 0.030664637684822083, -0.013244028203189373, -0.10360144078731537, 0.001039617694914341, -0.084364153444767, 0.08226446062326431, -0.04909555986523628, -0.03835729509592056, 0.02220437116920948, 0.06639216095209122, -0.057313404977321625, -0.052378199994564056, 0.0296158567070961, -0.032340653240680695, -0.07091762870550156, -0.0196189284324646, -3.8124624609226935e-34, 0.026562005281448364, -0.05090134218335152, 0.09998293966054916, 0.06676806509494781, 0.038550280034542084, 0.018903618678450584, 0.023523900657892227, -0.0765620544552803, -0.05548650771379471, -0.0967879667878151, -0.0018791478360071778, 0.011387873440980911, -0.039886631071567535, 0.004975959192961454, -0.04410237818956375, -0.08250753581523895, -0.01424499787390232, 0.012843151576817036, 0.010905511677265167, -0.003303337609395385, -0.06335678696632385, 0.009579487144947052, -0.0019262892892584205, -0.011156842112541199, -0.02694062888622284, 0.052175961434841156, 0.005026066210120916, -0.005176172591745853, 0.012216257862746716, -0.004427282605320215, -0.01621302217245102, -0.04576817899942398, -0.04385525360703468, -0.04981759563088417, -0.017073046416044235, -0.06533236801624298, 0.03338500112295151, -0.053385693579912186, -0.021510383114218712, -0.03841773048043251, 0.05344159156084061, -0.06738685816526413, 0.06808896362781525, -0.052348967641592026, -0.10785779356956482, 0.10493060201406479, -0.05742703005671501, -0.004622167441993952, -0.030532870441675186, -0.04259467497467995, 0.0405159667134285, 0.01369334664195776, -0.052487753331661224, -0.03965367376804352, -0.04664221033453941, 0.008538388647139072, -0.05638940632343292, 0.007373438682407141, 0.06584686785936356, 0.050889089703559875, 0.07063285261392593, 0.0491495281457901, 0.07640444487333298, 0.001311608124524355, 0.08089200407266617, -0.041256800293922424, 0.014139472506940365, 0.0018791905604302883, 0.06070729345083237, -0.006545999087393284, -0.052533142268657684, -0.025285789743065834, 0.05273614078760147, 0.039931297302246094, -0.04984401911497116, -0.0783955529332161, -0.04276876524090767, -0.013635857962071896, 0.005847741384059191, -0.008726752363145351, 0.011366141028702259, 0.03335465118288994, -0.029074039310216904, -0.07418914139270782, -0.05037669092416763, -0.05135183781385422, 0.010369732044637203, -0.059488024562597275, 0.027929505333304405, -0.04264036938548088, 0.04585791379213333, -0.0383944995701313, -0.01946597546339035, -0.014346268959343433, -0.0339469239115715, -4.15551395682087e-34, -0.0995723083615303, -0.06852151453495026, -0.03931137174367905, 0.08252692222595215, -0.06491490453481674, -0.021290656179189682, -0.07249264419078827, 0.11502712965011597, -0.006437175907194614, -0.04685216397047043, 0.01782117411494255, -0.011516941711306572, -0.05338973179459572, -0.030477924272418022, -0.020052971318364143, 0.017805684357881546, 0.06908874213695526, -0.05570421740412712, -0.08348695933818817, 0.019119741395115852, -0.03839895501732826, 0.04928797110915184, 0.01637798547744751, 0.0016307951882481575, 0.016805289313197136, 0.038442593067884445, -0.033482346683740616, 0.03435612842440605, 0.0035846445243805647, -0.02927032671868801, 0.003668610705062747, 0.03254010155797005, -0.09818251430988312, -0.017566317692399025, -0.03538377210497856, -0.021530631929636, 0.030166786164045334, 0.025682738050818443, -0.07670050859451294, 0.085820272564888, 0.07816606760025024, 0.08248180150985718, 0.0334022231400013, 0.031214211136102676, 0.04034591466188431, -0.023121191188693047, -0.01891872100532055, -0.024594943970441818, 0.07643261551856995, 0.013854732736945152, 0.04492950811982155, -0.0538158044219017, 0.06794525682926178, -0.08265668898820877, 0.054160259664058685, 0.001981540350243449, 0.008763893507421017, -0.0028293661307543516, 0.022819021716713905, -0.08558764308691025, -0.010533840395510197, 0.04364940896630287, -0.13077802956104279, -0.04725139960646629, 0.013014978729188442, 0.0032062209211289883, -0.05789324268698692, -0.10265088826417923, -0.04465301334857941, 0.010707088746130466, 0.04867180809378624, -0.05809701234102249, 0.0026358484756201506, -0.04542771726846695, 0.12771686911582947, -0.09149856120347977, 0.03402058407664299, 0.017316577956080437, -0.05735776573419571, -0.01061223167926073, 0.06169155240058899, 0.0220863688737154, -0.03386292979121208, 0.08166967332363129, 0.0283972080796957, -0.011562787927687168, -0.05785460025072098, -0.034789327532052994, -0.02713756449520588, 0.01220819540321827, -0.10538551956415176, 0.019716301932930946, -0.00013518997002393007, 0.07869155704975128, -0.059904564172029495, -1.6001248326347195e-08, -0.07722765952348709, -0.06133154034614563, -0.06064802035689354, 0.043258558958768845, 0.09656376391649246, 0.04150708392262459, -0.0861738994717598, -0.037940774112939835, 0.017782747745513916, -0.03620726242661476, 0.045882340520620346, -0.030422328040003777, -0.02633078396320343, 0.009726028889417648, -0.08233100920915604, 0.024559682235121727, -0.03350093215703964, -0.045133061707019806, -0.031354986131191254, -0.05214996263384819, 0.005954795517027378, 0.09598587453365326, 0.006238110363483429, 0.03683759644627571, 0.11524395644664764, 0.1076730340719223, 0.04251961037516594, 0.012427576817572117, -0.05410752817988396, 0.04946981742978096, 0.02295951545238495, 0.04836022108793259, -0.021526210010051727, 0.04444950819015503, -0.010510262101888657, 0.015267017297446728, 0.0898747518658638, 0.04991213604807854, -0.014726856723427773, 0.05172710120677948, 0.05801108852028847, -0.038990333676338196, -0.008670000359416008, 0.03271494805812836, -0.06090807914733887, -0.040880054235458374, 0.0027354503981769085, -0.05484255403280258, -0.008228215388953686, -0.0765458419919014, 0.041071295738220215, -0.00041863255319185555, 0.06921771168708801, -0.023373303934931755, -0.04937710613012314, -0.05253874137997627, 0.10408560186624527, 0.08966222405433655, 0.05203590169548988, 0.01511471439152956, 0.01474537793546915, 0.01952803134918213, 0.07583057880401611, 0.0002834160695783794], "embeddings_335a076173e0d9ccefe07d5364226de7": [-0.02978224866092205, 0.04655440151691437, 0.0018681103829294443, -0.018562931567430496, 0.06701923906803131, 0.003654634580016136, -0.04218907281756401, -0.02848786674439907, -0.010133939795196056, 0.10490317642688751, 0.01555141992866993, 0.057295702397823334, 0.06590380519628525, -0.09410087764263153, -0.02912749908864498, 0.030120855197310448, 0.011532905511558056, 0.008754641748964787, 0.03249702230095863, 0.0170979555696249, 0.006097712088376284, 0.11814703047275543, -0.007136346772313118, 0.042394205927848816, -0.012279472313821316, 0.09816038608551025, 0.019646426662802696, 0.07471013069152832, 0.09736538678407669, -0.04417576640844345, 0.03462698310613632, 0.17509691417217255, -0.07086145877838135, 0.02357855625450611, 0.00924890860915184, 0.06064895913004875, -0.013047770597040653, -0.06843510270118713, 0.06911073625087738, -0.03734489530324936, 0.03740095719695091, 0.004853359889239073, -0.0035082350950688124, -0.0052107288502156734, -0.012690193951129913, -0.00108466693200171, -0.018440846353769302, -0.04576510563492775, -0.05664844065904617, 0.021884027868509293, -0.028406010940670967, -0.05043560639023781, -0.09752204269170761, 0.06092101335525513, -0.026999367401003838, 0.019204236567020416, 0.03979542851448059, -0.023809829726815224, -0.05140448361635208, -0.028952836990356445, 0.008530711755156517, 0.015476071275770664, -0.00481085479259491, 0.010918614454567432, 0.0761202722787857, 0.0438818484544754, 0.01426013745367527, 0.024287620559334755, 0.0071434821002185345, -0.02582808956503868, 0.005944134667515755, -0.03332383558154106, 0.036285996437072754, -0.01659785397350788, 0.0046240235678851604, 0.03447793051600456, 0.03575671836733818, -0.008047369308769703, 0.05817294493317604, -0.0682256892323494, -0.054699596017599106, -0.0672357976436615, 0.03021046333014965, -0.06188766658306122, -0.04729354381561279, -0.07797350734472275, -0.032134708017110825, 0.045451123267412186, 0.06394097954034805, -0.026296013966202736, 0.007753060664981604, 0.06111611798405647, 0.033368390053510666, -0.011635711416602135, -0.031593069434165955, 0.03132890164852142, -0.060480669140815735, 0.015614197589457035, 0.13225895166397095, 0.05986134707927704, 0.0623265840113163, 0.08861994743347168, -0.034741271287202835, -0.01932281255722046, -0.028798995539546013, -0.06867612898349762, 0.07710002362728119, 0.07213041931390762, -0.02972002699971199, 0.03981488570570946, 0.016256675124168396, 0.083123117685318, 0.05857514962553978, -0.1481567770242691, 0.021202102303504944, 0.014941420406103134, 0.0935143306851387, -0.0013116960180923343, -0.00298256054520607, -0.05880875512957573, 0.08331936597824097, -0.030862051993608475, -0.015484352596104145, 0.033516138792037964, 0.0065578073263168335, -0.04925242066383362, -0.029900388792157173, -1.696566935641814e-33, 0.04741731658577919, -0.05347323790192604, 0.07244126498699188, 0.05903525650501251, 0.02986421436071396, 0.11741922795772552, 0.07002697139978409, -0.09024815261363983, 0.0009865129832178354, -0.03095315955579281, -0.033003129065036774, 0.027226923033595085, -0.08539409190416336, -0.029005983844399452, -0.053717199712991714, -0.16432666778564453, 0.012204589322209358, 0.056751251220703125, 0.04851030185818672, 0.026383215561509132, -0.0217936709523201, 0.02315514162182808, -0.030690714716911316, -0.04583191126585007, -0.00156612996943295, 0.10226818919181824, -0.0006823076400905848, -0.046106740832328796, -0.02794046327471733, 0.01185647677630186, -0.008872861973941326, -0.0002520305570214987, -0.04780576750636101, -0.005248036235570908, -0.05145453289151192, -0.04106071963906288, -0.028287528082728386, -0.04177255928516388, -0.009123779833316803, -0.05091682821512222, 0.06808548420667648, -0.024392368271946907, 0.04765991494059563, -0.03688908740878105, -0.0791747123003006, 0.015028848312795162, -0.04359126836061478, 0.05385258048772812, 0.004546549171209335, -0.049829818308353424, 0.08053155988454819, 0.024531375616788864, -0.06978841871023178, -0.0407031886279583, 0.012117180973291397, 0.03535456582903862, -0.059821516275405884, -0.01254518423229456, 0.031771279871463776, 0.050362881273031235, 0.0516311377286911, -0.044645942747592926, -0.016292482614517212, 0.0011740525951609015, 0.039926934987306595, 0.04024509713053703, 0.028789855539798737, -0.013732784427702427, 0.116043820977211, 0.03624297305941582, -0.03800596296787262, -0.008156590163707733, 0.036706771701574326, 0.028523318469524384, 0.014562860131263733, -0.1042199358344078, 0.020095333456993103, 0.030271699652075768, 0.007139949593693018, -0.03977000713348389, -0.022871386259794235, 0.06127531826496124, -0.1041046530008316, -0.045428454875946045, -0.00768329156562686, -0.052955709397792816, 0.07061222940683365, -0.016733989119529724, -0.07009924948215485, -0.062388915568590164, 0.009194263257086277, -0.048062555491924286, 0.03262505307793617, 0.10808958858251572, -0.015001100488007069, -2.6459985240263616e-34, -0.06154920160770416, -0.05685349181294441, -0.04040610045194626, 0.040221281349658966, -0.03177256137132645, -0.07015777379274368, 0.011927499435842037, 0.07034868746995926, 0.031126372516155243, 0.014834245666861534, 0.05321716144680977, -0.06509803235530853, -0.050289761275053024, -0.08632127940654755, -0.045627664774656296, 0.03176211193203926, 0.06595326215028763, -0.052002377808094025, 0.04634004458785057, 0.03364037349820137, -0.018920036032795906, 0.04937479645013809, -0.0001546710991533473, 0.039413392543792725, 0.03645549714565277, 0.0034346894826740026, -0.0022609843872487545, 0.03539925441145897, 0.03993319347500801, -0.004336310084909201, -0.03411637991666794, -0.03273016959428787, -0.09140489995479584, 0.018779398873448372, -0.05600900202989578, 0.01181277260184288, 0.045621540397405624, -0.06644509732723236, -0.05316414684057236, 0.029314175248146057, 0.10258349776268005, 0.0013625709107145667, -0.06517109274864197, 0.05951530486345291, 0.0027898536063730717, 0.0022309357300400734, 0.015674825757741928, 0.015378542244434357, 0.05489301308989525, -0.004344417247921228, 0.019386954605579376, -0.09041070938110352, 0.052838411182165146, -0.04409165307879448, 0.06411249935626984, 0.00987645797431469, -0.08685006946325302, -0.006942111533135176, -0.01582583226263523, -0.06798846274614334, 0.0003046724887099117, 0.035650644451379776, -0.1069442480802536, -0.11694668233394623, -0.0061962297186255455, -0.0070608556270599365, -0.0458744652569294, -0.08968688547611237, 0.004175619687885046, 0.03987198323011398, 0.025149229913949966, 0.048984844237565994, -0.014510774053633213, -0.01935950480401516, 0.09883543848991394, -0.1055278405547142, 0.023615030571818352, -0.030613986775279045, -0.022145181894302368, -0.03522711992263794, -0.06294555217027664, 0.06840019673109055, -0.034403588622808456, 0.05827941745519638, -0.0202004574239254, 0.025700442492961884, -0.013544599525630474, 0.024439016357064247, -0.01525108888745308, -0.020659277215600014, -0.10961172729730606, 0.04974847659468651, -0.00640788022428751, 0.07468724250793457, -0.028985945507884026, -1.7638422278309918e-08, -0.014146126806735992, -0.022244524210691452, -0.04744391888380051, -0.019536059349775314, 0.07530287653207779, 0.04779210686683655, -0.11056707799434662, -0.05746724456548691, 0.045045822858810425, -0.04211827740073204, 0.04895297810435295, -0.028448214754462242, 0.04805472120642662, -0.012635628692805767, -0.09819063544273376, 0.00862450897693634, -0.021739313378930092, -0.0799090638756752, -0.015862062573432922, -0.10070156306028366, -0.03199350833892822, 0.06452196836471558, 0.03638412058353424, -0.022035345435142517, 0.04026062786579132, 0.09557374566793442, 0.07770488411188126, -0.021008064970374107, -0.042318712919950485, 0.048839446157217026, 0.0015397584065794945, -0.02656468376517296, -0.0666930079460144, 0.10524323582649231, -0.05167057365179062, -0.00866883248090744, 0.09214971959590912, 0.06346645206212997, 0.016992755234241486, 0.014145253226161003, -0.015759211033582687, -0.025727635249495506, -0.058040447533130646, 0.05109773576259613, -0.022169126197695732, -0.03959013149142265, -0.08035057038068771, -0.039060309529304504, -0.0018160603940486908, -0.059930577874183655, 0.022280532866716385, -0.03453938663005829, -0.00813561026006937, -0.019104858860373497, 0.01701361872255802, -0.021087627857923508, 0.04865553602576256, 0.06936540454626083, 0.0705999955534935, 0.018846886232495308, -0.002571417950093746, -0.02468637190759182, 0.01768667995929718, -0.053081411868333817], "embeddings_ec4993ebd49c11199406789d5a03f2ef": [-0.007670919876545668, 0.0562441311776638, -0.09777364134788513, -0.03858688846230507, 0.07560835778713226, -0.007392301224172115, 0.005254274699836969, -0.001278952811844647, 0.01315875630825758, 0.1351458728313446, 0.08112571388483047, 0.11363615840673447, 0.07414967566728592, -0.11305760592222214, -0.07215933501720428, 0.05560566112399101, -0.027474498376250267, 0.0853547751903534, 0.008613714016973972, 0.05931654945015907, -0.06236672401428223, 0.12111888825893402, 0.04545648768544197, 0.017309945076704025, 0.03158850967884064, 0.059168942272663116, 0.05217441916465759, 0.08711568266153336, 0.051810212433338165, -0.05591004341840744, 0.05896425619721413, 0.06865712255239487, 0.047193363308906555, 0.002997242147102952, 0.0173987727612257, 0.09713774919509888, -0.02699187770485878, -0.07746940851211548, 0.012175717391073704, 0.009275674819946289, -0.021171582862734795, 0.041359979659318924, -0.011248026043176651, 0.002009341260418296, -0.08165633678436279, 0.027387050911784172, -0.038201577961444855, -0.011820455081760883, -0.041468530893325806, 0.029319895431399345, 0.0024262606166303158, -0.02613101154565811, -0.09237464517354965, 0.0043131206184625626, -0.030211452394723892, -0.02149609476327896, 0.006193698849529028, 0.007379776332527399, -0.03596474975347519, -0.08504082262516022, 0.018469061702489853, 0.0632815957069397, -0.016665251925587654, 0.021601390093564987, 0.09822116792201996, -0.015488043427467346, 0.04499034956097603, 0.027388019487261772, -0.00628181267529726, -0.09373240917921066, -0.0078108119778335094, -0.002862254623323679, -0.01783120632171631, 0.0680321455001831, -0.02637164108455181, 0.006379718892276287, -0.015098047442734241, -0.007350439205765724, 0.0010866110678762197, -0.1064300686120987, -0.005737960804253817, 0.00459723686799407, 0.04207988083362579, -0.05259169265627861, 0.0016764443134889007, -0.009420298971235752, 0.02557774819433689, 0.08301377296447754, 0.04709678515791893, 0.017418058589100838, 0.03434235230088234, 0.0520162470638752, 0.04103618115186691, -0.030202288180589676, -0.10694295912981033, 0.006860683206468821, -0.09379614144563675, 0.014400623738765717, 0.07814817130565643, 0.07213254272937775, -0.00394898746162653, 0.10075537860393524, -0.10056605935096741, 0.005511688534170389, 0.032289523631334305, -0.022645512595772743, 0.02014848403632641, 0.08393031358718872, -0.03994091600179672, 0.021649593487381935, 0.027631636708974838, 0.05459681153297424, -0.026234526187181473, -0.10977590084075928, 0.020846573635935783, -0.08946677297353745, 0.010584985837340355, -0.025868438184261322, -0.03664049133658409, -0.08254160732030869, 0.038094766438007355, -0.047199398279190063, -0.031894501298666, 0.054481882601976395, -0.03341800346970558, -0.038675274699926376, -0.012229383923113346, 2.6837227665353264e-35, 0.06323523819446564, -0.060966894030570984, 0.07228606194257736, 0.051015615463256836, 0.06596063077449799, 0.07679853588342667, 0.010052362456917763, -0.0808892473578453, 0.01256574597209692, -0.05761724337935448, 0.0016118137864395976, -0.0020706176292151213, -0.0460188090801239, -0.04113827645778656, -0.04485395550727844, -0.08272476494312286, 0.023597607389092445, 0.0723935142159462, 0.005195676349103451, -0.002379020908847451, -0.044652123004198074, 0.034189946949481964, -0.0012706959387287498, -0.01971471682190895, 0.016384612768888474, 0.09182551503181458, -0.004167642444372177, -0.00021005520829930902, 0.01111103780567646, -0.024579467251896858, -0.004736558999866247, -0.015374550595879555, -0.04201555997133255, -0.034427106380462646, 0.004999781493097544, -0.011123952455818653, -0.010280033573508263, -0.04738686606287956, 0.0008491178159601986, -0.02048163302242756, 0.04621424898505211, -0.04988804832100868, 0.06587768346071243, -0.0015437683323398232, -0.09824937582015991, 0.07682148367166519, -0.03181621804833412, 0.06233448162674904, -0.03463267534971237, -0.03666034713387489, 0.06794047355651855, 0.0415443554520607, -0.035197049379348755, -0.028692731633782387, -0.08763298392295837, -0.026173975318670273, -0.06595993041992188, -0.022111251950263977, 0.06558497995138168, 0.0700690746307373, 0.04167383909225464, 0.06307927519083023, 0.016992390155792236, 0.023058520630002022, 0.05589326471090317, -0.028443261981010437, 0.009249470196664333, 0.00042262027272954583, 0.12027578055858612, 0.02551257610321045, -0.04894367605447769, 0.004580906592309475, 0.03673877194523811, -0.004816862754523754, -0.026934275403618813, -0.09947159141302109, -0.024115292355418205, -0.009230582043528557, -0.03002580814063549, -0.02958395704627037, -0.0808231309056282, 0.04437071084976196, -0.08960177004337311, -0.08111075311899185, -0.01712239533662796, -0.051129765808582306, -0.01079576276242733, -0.02925899066030979, 0.006356989033520222, -0.02822740189731121, 0.06221935525536537, -0.059913113713264465, -0.03996054828166962, 0.017072634771466255, 0.011684441938996315, -1.1646893536863229e-33, -0.12040026485919952, -0.05969281867146492, -0.029141796752810478, 0.027606209740042686, -0.0662318617105484, -0.0229856725782156, -0.051748987287282944, 0.09767865389585495, -0.03770386800169945, -0.0688505545258522, -0.02415618859231472, -0.032192155718803406, -0.0939667820930481, -0.04079490154981613, -0.059584811329841614, 0.049387477338314056, 0.02041083388030529, -0.03858127444982529, -0.08792618662118912, 0.023010995239019394, -0.05813731253147125, 0.08538301289081573, 0.03427258878946304, 0.05282753333449364, 0.03984277695417404, 0.008695066906511784, 0.01036780048161745, 0.03648804500699043, 0.058903325349092484, -0.032631199806928635, 0.022144220769405365, 0.01592014729976654, -0.1497029960155487, 0.038401760160923004, -0.05585842579603195, -0.06646233797073364, 0.03071717917919159, 0.01627795211970806, -0.001948699587956071, 0.07689536362886429, 0.04684830456972122, 0.053225137293338776, -0.01996324583888054, 0.05802929773926735, 0.02813982218503952, -0.012220263481140137, -0.034131426364183426, -0.020329097285866737, 0.07753346860408783, 0.0037464734632521868, 0.028404880315065384, -0.034487284719944, 0.09794985502958298, -0.05864604562520981, 0.06232284754514694, -0.015918252989649773, -0.05954562500119209, 0.0005766854737885296, 0.04438605532050133, -0.053257979452610016, -0.011318323202431202, 0.07269157469272614, -0.08821815997362137, -0.012220511212944984, -0.014100883156061172, -0.02070876583456993, -0.028520839288830757, -0.07292764633893967, -0.053364530205726624, 0.021598421037197113, 0.07017076015472412, 0.01494299154728651, -0.01863507367670536, -0.05419357120990753, 0.08088797330856323, -0.07947581261396408, 0.04125354811549187, 0.011165864765644073, -0.009691832587122917, 0.01237525325268507, 0.05260885879397392, 0.031027520075440407, -0.020960215479135513, 0.052932802587747574, -0.02683400735259056, 0.04666588827967644, -0.01895904541015625, -0.05684243515133858, 0.012929641641676426, 0.0028007824439555407, -0.09850979596376419, 0.06986887753009796, 0.011976594105362892, 0.07937242090702057, -0.02124512568116188, -1.653157433167962e-08, -0.07270458340644836, -0.06728745251893997, -0.04216558486223221, 0.0391685888171196, 0.11040650308132172, 0.045609936118125916, -0.0808899775147438, -0.02653880976140499, -0.004941967315971851, -0.08167418092489243, 0.04249731823801994, -0.018426280468702316, -0.02454354614019394, -0.03735635057091713, -0.042745254933834076, -0.00698452815413475, 0.0023233869578689337, -0.0450635626912117, -0.026913689449429512, -0.04174108803272247, -0.03504124656319618, 0.06724017858505249, -0.014064107090234756, 0.04817166179418564, 0.044278427958488464, 0.06741908192634583, 0.06928063184022903, -0.03582381829619408, -0.03070785664021969, 0.033744946122169495, 0.07637042552232742, -0.007783244363963604, -0.013175309635698795, 0.083153635263443, 0.059247925877571106, 0.02304697595536709, 0.11636198312044144, 0.04074939340353012, -0.031211283057928085, 0.01015415694564581, -0.011594061739742756, -0.033928509801626205, -0.008534947410225868, 0.029882974922657013, -0.06520701944828033, -0.04720831662416458, -0.02027074247598648, -0.07568333297967911, -0.012606599368155003, -0.06378580629825592, 0.061490170657634735, -0.02389080636203289, 0.019177917391061783, -0.010435334406793118, -0.04689707234501839, -0.003665365744382143, 0.09483339637517929, 0.07700062543153763, 0.02826486900448799, 0.017827562987804413, 0.029317598789930344, 0.013773846440017223, 0.04276888817548752, 0.021909821778535843], "embeddings_da2cfc04bcfb6cf03e24d4a76e995430": [0.001705765724182129, -0.03711366653442383, -0.04870299622416496, 0.054244060069322586, 0.05823858082294464, -0.08250293135643005, 0.03575841337442398, 0.008241422474384308, -0.0413639135658741, 0.07277950644493103, 0.1453404277563095, 0.08667245507240295, 0.08824633806943893, 0.010260675102472305, 0.002178241265937686, 0.00306029268540442, -0.02161804959177971, -0.021149374544620514, 0.07800082117319107, 0.0025036593433469534, -0.03178463131189346, 0.029713071882724762, 0.12048467248678207, 0.04512712359428406, 0.018570274114608765, -0.023000776767730713, 0.010509415529668331, -0.002287157578393817, -0.01094664353877306, 0.022527452558279037, 0.10850147902965546, 0.06741452217102051, 0.06507062166929245, 0.06792987138032913, 0.07509371638298035, 0.08619480580091476, -0.019458947703242302, -0.028362616896629333, -0.009841729886829853, -0.029725022614002228, 0.06272844970226288, -0.01267996896058321, -0.05656164884567261, -0.005943874828517437, 0.00883539393544197, -0.027632832527160645, -0.021256359294056892, -0.14235857129096985, 0.045319098979234695, -0.012207066640257835, -0.07160043716430664, -0.05551055446267128, -0.08874666690826416, 0.0032232655212283134, -0.004459946416318417, -0.010066794231534004, 0.06399140506982803, 0.022289834916591644, -0.004790137987583876, -0.024126937612891197, 0.05334024876356125, 0.09992273151874542, 0.036352336406707764, -0.022364703938364983, 0.01843975856900215, 0.004405775107443333, -0.025552142411470413, 0.08382455259561539, 0.0192519910633564, -0.034394994378089905, 0.03926626965403557, -0.027431674301624298, -0.046623602509498596, -0.033354613929986954, 0.053460899740457535, -0.09059576690196991, -0.042446695268154144, 0.038235150277614594, -0.033340904861688614, -0.04347313567996025, -0.019258704036474228, -0.07836533337831497, 0.042163826525211334, -0.014399341307580471, -0.04811367765069008, 0.002164771081879735, 0.0188908651471138, 0.06267663091421127, 0.05023021996021271, -0.008258250541985035, 0.04888416826725006, -0.05470316484570503, -0.06938406080007553, -0.006116576958447695, 0.004283767193555832, -0.04291364550590515, 0.014421616680920124, -0.016213197261095047, 0.04119336977601051, 0.00895358994603157, 0.02791825495660305, 0.0027017875108867884, -0.019211839884519577, -0.029439708217978477, 0.05630813539028168, 0.07606322318315506, 0.02480577863752842, -0.028518011793494225, -0.0221934262663126, 0.0055675208568573, 0.03581812232732773, 0.01601644977927208, 0.042244091629981995, -0.03758826106786728, -0.01710054837167263, 0.0995323657989502, 0.028471343219280243, 0.0791696310043335, -0.06661728769540787, 0.06496833264827728, 0.10459474474191666, -0.045378074049949646, -0.014170987531542778, -0.033922016620635986, -0.08185281604528427, -0.023339025676250458, -0.0263235941529274, -6.722478164087443e-34, 0.07491885870695114, 0.021252667531371117, -0.010834310203790665, 0.06170632690191269, 0.01373942382633686, 0.04179143160581589, 0.025135153904557228, 0.010111418552696705, -0.030709635466337204, -0.06008967012166977, -0.04059864580631256, -0.02495482750236988, -0.024454129859805107, 0.06664461642503738, -0.15011277794837952, -0.053983189165592194, -0.0733095109462738, 0.03934498876333237, 0.030921820551156998, 0.07491788268089294, -0.09798727184534073, -0.05145657807588577, 0.011544263921678066, -0.04145297408103943, 0.061961580067873, 0.0925494059920311, -0.03625652194023132, 0.016030559316277504, -0.0804433673620224, -0.020503129810094833, -0.07407011091709137, 0.004126054234802723, 0.027579165995121002, 0.020547663792967796, -0.06035635247826576, 0.0027586824726313353, -0.00882949959486723, -0.039388302713632584, -0.028010031208395958, -0.0928124412894249, 0.08425987511873245, -0.006493585184216499, 0.01701103337109089, -0.0016567737329751253, -0.014440502040088177, 0.050487738102674484, -0.0533074252307415, 0.05334067344665527, 0.019510019570589066, 0.04533126950263977, 0.006024207454174757, 0.035888317972421646, -0.08269145339727402, -0.015312707051634789, -0.11261795461177826, 0.041119907051324844, 0.0036424624267965555, -0.02383817546069622, 0.05726708099246025, -0.09913474321365356, 0.04617253318428993, 0.06260275095701218, -0.011036884970963001, 0.014867994002997875, 0.08900823444128036, 0.08157457411289215, 0.020890653133392334, 0.11339251697063446, 0.026958279311656952, 0.05022839829325676, -0.05342569574713707, -0.005980574991554022, -0.14026162028312683, -0.01298805233091116, 0.03295440599322319, -0.07765986770391464, 0.016823451966047287, 0.03320084512233734, -0.012603068724274635, -0.028023086488246918, 0.015211106278002262, -0.03180631995201111, -0.012548110447824001, -0.05952537804841995, -0.018182681873440742, 0.056378189474344254, 0.04057018831372261, 0.028527680784463882, -0.04449208453297615, 0.03692600131034851, 0.01483230572193861, 0.045752886682748795, -0.056428201496601105, 0.02250026911497116, 0.021787654608488083, -8.353638665504086e-34, -0.042114533483982086, -0.03696710243821144, -0.07248268276453018, 0.08337689936161041, -0.03510887920856476, -0.10481488704681396, -0.030233215540647507, 0.023504383862018585, 0.01218954287469387, 0.025577280670404434, 0.01466398872435093, -0.08477065712213516, 0.004178339149802923, -0.033697549253702164, 0.06295277178287506, -0.009198032319545746, -0.08192836493253708, 0.027244310826063156, 0.048726920038461685, 0.02625383622944355, 0.02326822839677334, 0.048588644713163376, 0.00015670270659029484, -0.011395220644772053, 0.015428830869495869, 0.01894325390458107, -0.035540565848350525, 0.03655213117599487, -0.011690651997923851, -0.01837708242237568, 0.007043518591672182, 0.04418930038809776, -0.12187256664037704, 0.025909941643476486, 0.012895165011286736, 0.01603100635111332, 0.028283078223466873, 0.02479168027639389, 0.020960301160812378, 0.09110398590564728, 0.07780896127223969, 0.017537036910653114, -0.014724231325089931, 0.09329919517040253, -0.02365795709192753, -0.002495944732800126, 0.05132067948579788, 0.08295664936304092, 0.0010254057124257088, 0.004845242947340012, 0.009051480330526829, -0.04599530249834061, 0.0030461617279797792, -0.08089305460453033, 0.035170115530490875, 0.06175484508275986, 0.011018062010407448, 0.055266015231609344, -0.06311169266700745, -0.10113067924976349, -0.014084793627262115, 0.004625385161489248, -0.05806562677025795, -0.045481473207473755, -0.07290765643119812, -0.03921012207865715, -0.0027740721125155687, 0.00971553660929203, -0.03210272267460823, -0.035551853477954865, 0.030169719830155373, 0.08789338171482086, -0.0059505910612642765, -0.05287739261984825, 0.017520654946565628, 0.052026305347681046, -0.055953942239284515, -0.009806878864765167, 0.008695218712091446, 0.007404217030853033, -0.016856597736477852, 0.039768513292074203, -0.019353922456502914, -0.03218391165137291, -0.02161290869116783, -0.027967888861894608, -0.05785103514790535, -0.009899281896650791, -0.0617695078253746, -0.06452890485525131, -0.023393165320158005, 0.07272801548242569, -0.020122259855270386, -0.03018820285797119, -0.017079373821616173, -1.849139508180997e-08, -0.01779543049633503, 0.017340928316116333, -0.11846242845058441, 0.03703140467405319, 0.07873473316431046, -0.07008561491966248, -0.0417843796312809, 0.03579585999250412, -0.07885538786649704, -0.039330899715423584, -0.009065608493983746, -0.05050637945532799, -0.04833826422691345, 0.05824518948793411, -0.006923250388354063, -0.03395109623670578, -0.00836634449660778, 0.0036576678976416588, -0.05979592353105545, -0.03724149242043495, 0.0417688749730587, -0.0028850894887000322, 0.06692025065422058, 0.020121291279792786, -0.01567929796874523, 0.0468301959335804, 0.10070816427469254, 0.023907219991087914, -0.08128339797258377, -0.05389540642499924, 0.0707462877035141, -0.08178634941577911, -0.12196961790323257, 0.05373057350516319, 0.012043045833706856, -0.01930347830057144, 0.038392409682273865, -0.05450112372636795, 0.052595824003219604, 0.01346024964004755, -0.017031075432896614, -0.036448702216148376, 0.0009345904691144824, -0.01270527858287096, -0.15804988145828247, -0.03470144793391228, 0.0006443637539632618, -0.05380665138363838, 0.04297391697764397, -0.028690442442893982, 0.03363320231437683, -0.05895252525806427, 0.030459454283118248, -0.09395552426576614, 0.04137473553419113, 0.028177212923765182, 0.12329947203397751, 0.05401964485645294, 0.08387119323015213, -0.014943958260118961, -0.023904116824269295, -0.008952552452683449, 0.09653334319591522, -0.0522768534719944], "embeddings_89c49a73b6a5ffb3a32c712365d182e2": [-0.03826839476823807, -0.09445520490407944, -0.0002617982099764049, 0.053395263850688934, 0.053774479776620865, -0.06802848726511002, 0.017628692090511322, 0.008935395628213882, 0.015028446912765503, 0.11618822813034058, 0.1369079202413559, 0.07764260470867157, 0.03180290386080742, 0.01724150776863098, 0.07640400528907776, 0.001595960115082562, 0.04440321400761604, -0.039976272732019424, 0.04716981574892998, 0.007103577256202698, 0.00018504331819713116, 0.04196838289499283, 0.1024956926703453, 0.09124337136745453, 0.05462733656167984, -0.06537090241909027, 0.013018853031098843, 0.02908540889620781, -0.007580527104437351, 0.039897412061691284, 0.10109782218933105, 0.06910272687673569, 0.06204815208911896, 0.017899904400110245, 0.07014265656471252, 0.11312481015920639, 0.001917778281494975, -0.040820010006427765, 0.01818619668483734, 0.019270367920398712, 0.06764328479766846, -0.03974080830812454, -0.04535061866044998, -0.02014499343931675, 0.004934580996632576, 0.008084188215434551, -0.0019133077003061771, -0.12462775409221649, 0.025699865072965622, -0.01141765434294939, -0.05681229382753372, -0.019958121702075005, -0.09080807119607925, 0.0018371904734522104, -0.000837772386148572, -0.022148320451378822, 0.050984516739845276, 0.011582205072045326, -0.012370850890874863, -0.010746994987130165, 0.08025408536195755, 0.053574103862047195, 0.061614230275154114, -0.03803389146924019, 0.012374804355204105, 0.00382252992130816, -0.0537373423576355, 0.07952674478292465, -0.012787424959242344, -0.06554313004016876, 0.03400111198425293, -0.015599463135004044, -0.07866315543651581, -0.026622790843248367, 0.03110349364578724, -0.05445398390293121, -0.044910773634910583, 0.012766196392476559, -0.06557072699069977, -0.04144863039255142, -0.01582600735127926, -0.07256614416837692, 0.04249001294374466, 0.00022280462144408375, -0.05497649684548378, -0.015204002149403095, 0.02476431429386139, 0.048046622425317764, 0.029160918667912483, -0.0247570239007473, 0.015396391041576862, -0.04235772043466568, -0.016300713643431664, -0.027410389855504036, -0.004540711175650358, -0.02046060748398304, -0.04692733287811279, -0.045168712735176086, 0.030405690893530846, -0.01644454337656498, 0.044013701379299164, 0.02137845940887928, -0.027012314647436142, 0.019744524732232094, 0.11114613711833954, 0.07740601152181625, -0.024915140122175217, 0.009160229004919529, -0.06473411619663239, 0.03537352383136749, 0.02715425379574299, 0.016287213191390038, 0.005502989050000906, -0.006270330399274826, -0.014228744432330132, 0.10966536402702332, 0.015067166648805141, 0.04088678956031799, -0.07786604762077332, 0.056771744042634964, 0.1325758993625641, -0.04129665717482567, -0.0372563898563385, -0.0006508895312435925, -0.1126798689365387, -0.015323176980018616, 0.018972763791680336, -9.454114436224833e-34, 0.08231097459793091, -0.015008067712187767, 0.031489379703998566, 0.06710202246904373, 0.044922053813934326, 0.04138549044728279, -0.0021407166495919228, -0.05236569419503212, 0.02305518463253975, -0.024510333314538002, -0.04728691279888153, -0.01068143267184496, -0.0031748730689287186, 0.021023603156208992, -0.16773219406604767, -0.08733052015304565, -0.07517153024673462, -0.010902879759669304, 0.07179729640483856, 0.08502617478370667, -0.11617405712604523, 0.027585109695792198, 0.01716615818440914, -0.05990307033061981, 0.05839452147483826, 0.031291618943214417, -0.016186444088816643, 0.0038970294408500195, -0.08514893054962158, -0.03922431170940399, -0.04125471040606499, -0.0413220040500164, 0.04411718249320984, 0.03852243348956108, -0.04725532978773117, -0.0013745215255767107, -0.018046090379357338, -0.0803702175617218, -0.055270276963710785, -0.08414183557033539, 0.05341499298810959, 0.019917894154787064, -0.038666628301143646, 0.009324027225375175, -0.04844542592763901, 0.0790610983967781, -0.01582387462258339, 0.030884942039847374, 0.050512365996837616, 0.014983701519668102, 0.05295328050851822, 0.03822360187768936, -0.07262398302555084, -0.006671225652098656, -0.0835719108581543, 0.05422593280673027, 0.0063258083537220955, -0.030546560883522034, 0.07445082813501358, -0.12784264981746674, 0.04987722635269165, -0.014120098203420639, -0.025547664612531662, 0.024787217378616333, 0.08851610869169235, 0.08138806372880936, 0.03078487515449524, 0.11294477432966232, 0.010824143886566162, 0.015752265229821205, -0.008384767919778824, -0.0024945500772446394, -0.13312797248363495, 0.021092096343636513, 0.01087543647736311, -0.08526381850242615, 0.03192690387368202, 0.0016270471969619393, -0.027165701612830162, -0.014412914402782917, 0.043711643666028976, -0.01601932942867279, -0.041329048573970795, -0.006036270875483751, -0.02527904510498047, 0.07156576216220856, 0.04060603678226471, 0.031700409948825836, -0.026788193732500076, -0.024052802473306656, -0.0064402692951262, 0.02784496732056141, -0.014759493991732597, 0.03055691160261631, -0.000865363806951791, -1.0013263119777417e-33, -0.04765922203660011, -0.028348950669169426, -0.06342993676662445, 0.0959814041852951, 0.0008491275366395712, -0.065096914768219, -0.011303429491817951, 0.028880087658762932, -0.00710655190050602, 0.07676634192466736, 0.036800093948841095, -0.0757102221250534, -0.018235838040709496, -0.021401356905698776, 0.045669883489608765, -0.02169322781264782, -0.09243582934141159, 0.02840951271355152, 0.03878775238990784, 0.0476970411837101, -0.0016574942274019122, 0.05785346031188965, 0.05743016302585602, -0.003461678745225072, 0.003434297163039446, 0.023260096088051796, -0.04854239895939827, 0.018966810777783394, -0.04790671914815903, -0.07922167330980301, 0.021911103278398514, 0.03974619507789612, -0.10870005190372467, -0.03819575905799866, 0.011095128022134304, 0.02441204898059368, 0.0011980746639892459, 0.05682118237018585, -0.0007223807624541223, 0.0875815749168396, 0.08503971993923187, -0.036667995154857635, -0.009281295351684093, 0.0723433867096901, -0.05700650066137314, -0.04024367406964302, 0.05261976644396782, 0.006587760988622904, -0.014990120194852352, 0.010817103087902069, -0.003581223078072071, -0.036190155893564224, 0.012731078080832958, -0.04092022776603699, 0.06442893296480179, 0.062254399061203, -0.00448148837313056, 0.06418101489543915, -0.059989407658576965, -0.1338123381137848, 0.028191303834319115, 0.01653403975069523, -0.03371775895357132, -0.025696242228150368, -0.032172929495573044, -0.036194175481796265, -0.03422918543219566, 0.01003970392048359, -0.03278632089495659, -0.04860028997063637, 0.02854006551206112, 0.07601304352283478, -0.029198918491601944, -0.04944775998592377, 0.01732909120619297, -0.008431630209088326, -0.07994959503412247, -0.059203825891017914, 0.021390939131379128, 0.019905589520931244, -0.023258140310645103, 0.02126719430088997, -0.03739765286445618, -0.03390985727310181, -0.034677598625421524, -0.08032606542110443, -0.0053414772264659405, 0.019643744453787804, -0.024893170222640038, -0.03211233764886856, -0.05670474097132683, 0.01581760309636593, -0.04482536390423775, 0.02592482790350914, -0.027461426332592964, -1.882385625151528e-08, -0.01706475391983986, 0.04334399849176407, -0.11712615191936493, 0.05464502424001694, 0.03315185382962227, -0.10288026183843613, -0.024989668279886246, 0.016210569068789482, -0.02235286310315132, -0.01307657826691866, -0.030714955180883408, -0.01346497517079115, -0.06073358654975891, 0.07832808047533035, -0.03978782519698143, -0.021131355315446854, -0.02214341051876545, -0.00777052715420723, -0.01712227612733841, -0.030405091121792793, 0.02481672912836075, 0.014995992183685303, 0.08333965390920639, -0.0280322078615427, -0.012367084622383118, 0.11533976346254349, 0.04844299703836441, 0.03050730563700199, -0.06467141211032867, -0.026546765118837357, 0.0831269696354866, -0.10614288598299026, -0.10909636318683624, 0.026615779846906662, -0.00919046439230442, -0.0039430707693099976, -0.01536315307021141, -0.07590481638908386, 0.06952540576457977, 0.010636835359036922, -0.04401778802275658, -0.010594486258924007, 0.0203549787402153, 0.011685878969728947, -0.06678279489278793, 0.015916774049401283, -0.03462572768330574, -0.022583648562431335, 0.018187833949923515, -0.04136524721980095, 0.009206727147102356, -0.045931242406368256, 0.03537409007549286, -0.059568412601947784, 0.06379687041044235, 0.04439887776970863, 0.11394188553094864, 0.07688254863023758, 0.0641430988907814, -0.018977832049131393, -0.04886497184634209, -0.00456249387934804, 0.08642586320638657, -0.07493963092565536], "summaries_d12f4e5f6a1f98ab597c76c2a9c2357d": "Modified content"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: smart-commit-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: AI-powered Git commit automation
|
|
5
5
|
Author: Smart Commit Contributors
|
|
6
6
|
License: MIT
|
|
@@ -439,7 +439,7 @@ Step 7: Creating commits...
|
|
|
439
439
|
|
|
440
440
|
## Roadmap
|
|
441
441
|
|
|
442
|
-
- [
|
|
442
|
+
- [x] Interactive commit editing
|
|
443
443
|
- [ ] Learning mode (observes user edits)
|
|
444
444
|
- [ ] IDE extensions (VS Code, JetBrains)
|
|
445
445
|
- [ ] Pull request generation
|
|
@@ -485,320 +485,5 @@ Smart Commit builds on:
|
|
|
485
485
|
|
|
486
486
|
**Made with ❤️ to make Git history beautiful**
|
|
487
487
|
|
|
488
|
-
## Installation
|
|
489
|
-
|
|
490
|
-
### Requirements
|
|
491
|
-
- Python 3.12+
|
|
492
|
-
- Git
|
|
493
|
-
|
|
494
|
-
### From PyPI (Coming Soon)
|
|
495
|
-
|
|
496
|
-
```bash
|
|
497
|
-
pip install smart-commit
|
|
498
|
-
```
|
|
499
|
-
|
|
500
|
-
### From Source
|
|
501
|
-
|
|
502
|
-
```bash
|
|
503
|
-
git clone https://github.com/hamxa296/Smart-Commit.git
|
|
504
|
-
cd Smart-Commit
|
|
505
|
-
pip install -e .
|
|
506
|
-
```
|
|
507
|
-
|
|
508
|
-
### Install Dependencies
|
|
509
|
-
|
|
510
|
-
```bash
|
|
511
|
-
pip install -r requirements.txt
|
|
512
|
-
```
|
|
513
|
-
|
|
514
|
-
## Quick Start
|
|
515
|
-
|
|
516
|
-
### Initialize Smart Commit
|
|
517
|
-
|
|
518
|
-
```bash
|
|
519
|
-
smart-commit init
|
|
520
|
-
```
|
|
521
|
-
|
|
522
|
-
### Configure Your LLM
|
|
523
|
-
|
|
524
|
-
```bash
|
|
525
|
-
smart-commit config --provider openrouter --model anthropic/claude-sonnet --api-key YOUR_KEY
|
|
526
|
-
```
|
|
527
|
-
|
|
528
|
-
Or set environment variables:
|
|
529
|
-
|
|
530
|
-
```bash
|
|
531
|
-
export SMART_COMMIT_PROVIDER=openrouter
|
|
532
|
-
export SMART_COMMIT_MODEL=anthropic/claude-sonnet
|
|
533
|
-
export SMART_COMMIT_API_KEY=your-api-key
|
|
534
|
-
```
|
|
535
|
-
|
|
536
|
-
### Run Smart Commit
|
|
537
|
-
|
|
538
|
-
```bash
|
|
539
|
-
smart-commit run
|
|
540
|
-
```
|
|
541
|
-
|
|
542
|
-
This will:
|
|
543
|
-
1. Detect all changed files
|
|
544
|
-
2. Analyze diffs and create summaries
|
|
545
|
-
3. Generate semantic embeddings
|
|
546
|
-
4. Cluster related files
|
|
547
|
-
5. Display a preview of proposed commits
|
|
548
|
-
6. Execute commits upon confirmation
|
|
549
|
-
|
|
550
|
-
## Commands
|
|
551
|
-
|
|
552
|
-
```bash
|
|
553
|
-
# Analyze and create commits
|
|
554
|
-
smart-commit run
|
|
555
|
-
|
|
556
|
-
# Preview without executing
|
|
557
|
-
smart-commit preview
|
|
558
|
-
|
|
559
|
-
# Undo last session
|
|
560
|
-
smart-commit undo
|
|
561
|
-
|
|
562
|
-
# Configure settings
|
|
563
|
-
smart-commit config --show
|
|
564
|
-
|
|
565
|
-
# Diagnostic checks
|
|
566
|
-
smart-commit doctor
|
|
567
|
-
|
|
568
|
-
# Show version
|
|
569
|
-
smart-commit version
|
|
570
|
-
|
|
571
|
-
# Initialize repository
|
|
572
|
-
smart-commit init
|
|
573
|
-
```
|
|
574
|
-
|
|
575
|
-
## Architecture
|
|
576
|
-
|
|
577
|
-
The tool follows a modular pipeline:
|
|
578
|
-
|
|
579
|
-
```
|
|
580
|
-
Repository
|
|
581
|
-
↓
|
|
582
|
-
Git Scanner (git_service.py)
|
|
583
|
-
↓
|
|
584
|
-
Diff Parser (diff_parser.py)
|
|
585
|
-
↓
|
|
586
|
-
File Summarizer (summarizer.py)
|
|
587
|
-
↓
|
|
588
|
-
Embedding Generator (embeddings.py)
|
|
589
|
-
↓
|
|
590
|
-
Semantic Clustering (clustering.py)
|
|
591
|
-
↓
|
|
592
|
-
LLM Cluster Review (ai.py)
|
|
593
|
-
↓
|
|
594
|
-
Commit Message Generator (commit_messages.py)
|
|
595
|
-
↓
|
|
596
|
-
Interactive Preview (preview.py)
|
|
597
|
-
↓
|
|
598
|
-
Git Commit Executor (committer.py)
|
|
599
|
-
```
|
|
600
|
-
|
|
601
|
-
## Configuration
|
|
602
|
-
|
|
603
|
-
Smart Commit looks for configuration in this order:
|
|
604
|
-
|
|
605
|
-
1. `~/.smart_commit/config.yaml`
|
|
606
|
-
2. Environment variables (`SMART_COMMIT_*`)
|
|
607
|
-
3. Default values
|
|
608
|
-
|
|
609
|
-
### Example config.yaml
|
|
610
|
-
|
|
611
|
-
```yaml
|
|
612
|
-
provider: openrouter
|
|
613
|
-
model: anthropic/claude-sonnet
|
|
614
|
-
embedding_model: all-MiniLM-L6-v2
|
|
615
|
-
max_files_per_commit: 8
|
|
616
|
-
interactive: true
|
|
617
|
-
auto_push: false
|
|
618
|
-
conventional_commits: true
|
|
619
|
-
use_local_embeddings: true
|
|
620
|
-
```
|
|
621
|
-
|
|
622
|
-
## Supported LLM Providers
|
|
623
|
-
|
|
624
|
-
Smart Commit uses [LiteLLM](https://github.com/BerriAI/litellm) to support:
|
|
625
|
-
|
|
626
|
-
- OpenRouter
|
|
627
|
-
- OpenAI
|
|
628
|
-
- Anthropic
|
|
629
|
-
- Gemini
|
|
630
|
-
- Groq
|
|
631
|
-
- Azure OpenAI
|
|
632
|
-
- Local models (Ollama, LM Studio, etc.)
|
|
633
|
-
|
|
634
|
-
## Development
|
|
635
|
-
|
|
636
|
-
### Project Structure
|
|
637
|
-
|
|
638
|
-
```
|
|
639
|
-
smart_commit/
|
|
640
|
-
├── __init__.py
|
|
641
|
-
├── cli.py # Command-line interface
|
|
642
|
-
├── config.py # Configuration management
|
|
643
|
-
├── models.py # Data models
|
|
644
|
-
├── utils.py # Utility functions
|
|
645
|
-
├── git_service.py # Git operations
|
|
646
|
-
├── diff_parser.py # Diff parsing
|
|
647
|
-
├── summarizer.py # Summary generation
|
|
648
|
-
├── embeddings.py # Embedding generation
|
|
649
|
-
├── clustering.py # File clustering
|
|
650
|
-
├── ai.py # LLM analysis
|
|
651
|
-
├── commit_messages.py # Message generation
|
|
652
|
-
├── preview.py # Interactive UI
|
|
653
|
-
└── committer.py # Commit execution
|
|
654
|
-
tests/
|
|
655
|
-
├── __init__.py
|
|
656
|
-
├── test_git_service.py
|
|
657
|
-
├── test_diff_parser.py
|
|
658
|
-
└── test_clustering.py
|
|
659
|
-
pyproject.toml
|
|
660
|
-
README.md
|
|
661
|
-
```
|
|
662
|
-
|
|
663
|
-
### Development Setup
|
|
664
|
-
|
|
665
|
-
```bash
|
|
666
|
-
# Clone the repository
|
|
667
|
-
git clone https://github.com/hamxa296/Smart-Commit.git
|
|
668
|
-
cd Smart-Commit
|
|
669
|
-
|
|
670
|
-
# Create virtual environment
|
|
671
|
-
python -m venv venv
|
|
672
|
-
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
673
|
-
|
|
674
|
-
# Install in development mode with dev dependencies
|
|
675
|
-
pip install -e ".[dev]"
|
|
676
|
-
|
|
677
|
-
# Run tests
|
|
678
|
-
pytest
|
|
679
|
-
|
|
680
|
-
# Run linting
|
|
681
|
-
ruff check smart_commit tests
|
|
682
|
-
black --check smart_commit tests
|
|
683
|
-
|
|
684
|
-
# Format code
|
|
685
|
-
black smart_commit tests
|
|
686
|
-
ruff check --fix smart_commit tests
|
|
687
|
-
```
|
|
688
|
-
|
|
689
|
-
## Milestones
|
|
690
|
-
|
|
691
|
-
### Milestone 1: ✅ Foundation (Complete)
|
|
692
|
-
- Repository detection
|
|
693
|
-
- Changed file discovery
|
|
694
|
-
- Git wrapper
|
|
695
|
-
- Deliverable: Basic repository scanner
|
|
696
|
-
|
|
697
|
-
### Milestone 2: In Progress
|
|
698
|
-
- Diff parser
|
|
699
|
-
- Structured diff representation
|
|
700
|
-
- Deliverable: Readable summaries of code changes
|
|
701
|
-
|
|
702
|
-
### Milestone 3: Planned
|
|
703
|
-
- Rule-based grouping
|
|
704
|
-
- Conventional Commit generation
|
|
705
|
-
- Terminal preview
|
|
706
|
-
- Deliverable: Working MVP
|
|
707
|
-
|
|
708
|
-
### Milestone 4: Planned
|
|
709
|
-
- Embedding generation
|
|
710
|
-
- Semantic clustering
|
|
711
|
-
- Deliverable: Cross-folder logical commit grouping
|
|
712
|
-
|
|
713
|
-
### Milestone 5: Planned
|
|
714
|
-
- LLM cluster refinement
|
|
715
|
-
- AI-generated commit messages
|
|
716
|
-
- Deliverable: High-quality commit history
|
|
717
|
-
|
|
718
|
-
### Milestone 6: Planned
|
|
719
|
-
- Interactive editing
|
|
720
|
-
- Undo support
|
|
721
|
-
- Session management
|
|
722
|
-
- Deliverable: Production-ready CLI
|
|
723
|
-
|
|
724
|
-
### Milestone 7: Planned
|
|
725
|
-
- Learning mode
|
|
726
|
-
- Plugins
|
|
727
|
-
- IDE integration
|
|
728
|
-
- PR generation
|
|
729
|
-
- PyPI packaging
|
|
730
|
-
- Deliverable: Polished, extensible developer tool
|
|
731
|
-
|
|
732
|
-
## Why Smart Commit?
|
|
733
|
-
|
|
734
|
-
### Without Smart Commit
|
|
735
|
-
```
|
|
736
|
-
$ git status
|
|
737
|
-
modified: src/auth/login.ts
|
|
738
|
-
modified: src/api/routes.ts
|
|
739
|
-
modified: README.md
|
|
740
|
-
modified: src/auth/jwt.ts
|
|
741
|
-
|
|
742
|
-
$ git add src/auth/login.ts
|
|
743
|
-
$ git add src/auth/jwt.ts
|
|
744
|
-
$ git commit -m "feat(auth): improve login validation"
|
|
745
|
-
# 15 min later...
|
|
746
|
-
```
|
|
747
|
-
|
|
748
|
-
### With Smart Commit
|
|
749
|
-
```
|
|
750
|
-
$ smart-commit run
|
|
751
|
-
Found 4 changed files
|
|
752
|
-
|
|
753
|
-
✓ Proposed commits:
|
|
754
|
-
1. feat(auth): improve login validation and session handling
|
|
755
|
-
2. docs: update README
|
|
756
|
-
|
|
757
|
-
$ [accept] to execute, [e]dit to modify, [s]plit to separate
|
|
758
|
-
# 30 seconds later...
|
|
759
|
-
```
|
|
760
|
-
|
|
761
|
-
## Contributing
|
|
762
|
-
|
|
763
|
-
We welcome contributions! Areas where help is needed:
|
|
764
|
-
|
|
765
|
-
- [ ] Improve diff parsing for different languages
|
|
766
|
-
- [ ] Add support for more LLM providers
|
|
767
|
-
- [ ] Implement learning mode for user preferences
|
|
768
|
-
- [ ] Create IDE extensions (VS Code, JetBrains)
|
|
769
|
-
- [ ] Optimize clustering algorithm
|
|
770
|
-
- [ ] Add comprehensive test coverage
|
|
771
|
-
- [ ] Documentation improvements
|
|
772
|
-
|
|
773
|
-
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
774
|
-
|
|
775
|
-
## License
|
|
776
|
-
|
|
777
|
-
MIT License - See [LICENSE](LICENSE) file for details.
|
|
778
|
-
|
|
779
|
-
## Authors
|
|
780
|
-
|
|
781
|
-
- Smart Commit Contributors
|
|
782
|
-
|
|
783
|
-
## Support
|
|
784
|
-
|
|
785
|
-
- 📖 Documentation: See [docs/](docs/) directory
|
|
786
|
-
- 🐛 Bug Reports: GitHub Issues
|
|
787
|
-
- 💬 Discussions: GitHub Discussions
|
|
788
|
-
- 📧 Email: support@smartcommit.dev
|
|
789
|
-
|
|
790
|
-
## Roadmap
|
|
791
|
-
|
|
792
|
-
- [ ] Interactive commit editing
|
|
793
|
-
- [ ] Learning mode for user preferences
|
|
794
|
-
- [ ] Framework-specific plugins (React, Django, Next.js, etc.)
|
|
795
|
-
- [ ] IDE extensions (VS Code, Cursor, Windsurf, JetBrains)
|
|
796
|
-
- [ ] Pull request generation
|
|
797
|
-
- [ ] CI/CD integration
|
|
798
|
-
- [ ] Team mode with shared configurations
|
|
799
|
-
- [ ] Analytics and insights
|
|
800
|
-
|
|
801
|
-
---
|
|
802
488
|
|
|
803
|
-
**Made with ❤️ for better Git workflows**
|
|
804
489
|
|
|
@@ -406,7 +406,7 @@ Step 7: Creating commits...
|
|
|
406
406
|
|
|
407
407
|
## Roadmap
|
|
408
408
|
|
|
409
|
-
- [
|
|
409
|
+
- [x] Interactive commit editing
|
|
410
410
|
- [ ] Learning mode (observes user edits)
|
|
411
411
|
- [ ] IDE extensions (VS Code, JetBrains)
|
|
412
412
|
- [ ] Pull request generation
|
|
@@ -452,320 +452,5 @@ Smart Commit builds on:
|
|
|
452
452
|
|
|
453
453
|
**Made with ❤️ to make Git history beautiful**
|
|
454
454
|
|
|
455
|
-
## Installation
|
|
456
|
-
|
|
457
|
-
### Requirements
|
|
458
|
-
- Python 3.12+
|
|
459
|
-
- Git
|
|
460
|
-
|
|
461
|
-
### From PyPI (Coming Soon)
|
|
462
|
-
|
|
463
|
-
```bash
|
|
464
|
-
pip install smart-commit
|
|
465
|
-
```
|
|
466
|
-
|
|
467
|
-
### From Source
|
|
468
|
-
|
|
469
|
-
```bash
|
|
470
|
-
git clone https://github.com/hamxa296/Smart-Commit.git
|
|
471
|
-
cd Smart-Commit
|
|
472
|
-
pip install -e .
|
|
473
|
-
```
|
|
474
|
-
|
|
475
|
-
### Install Dependencies
|
|
476
|
-
|
|
477
|
-
```bash
|
|
478
|
-
pip install -r requirements.txt
|
|
479
|
-
```
|
|
480
|
-
|
|
481
|
-
## Quick Start
|
|
482
|
-
|
|
483
|
-
### Initialize Smart Commit
|
|
484
|
-
|
|
485
|
-
```bash
|
|
486
|
-
smart-commit init
|
|
487
|
-
```
|
|
488
|
-
|
|
489
|
-
### Configure Your LLM
|
|
490
|
-
|
|
491
|
-
```bash
|
|
492
|
-
smart-commit config --provider openrouter --model anthropic/claude-sonnet --api-key YOUR_KEY
|
|
493
|
-
```
|
|
494
|
-
|
|
495
|
-
Or set environment variables:
|
|
496
|
-
|
|
497
|
-
```bash
|
|
498
|
-
export SMART_COMMIT_PROVIDER=openrouter
|
|
499
|
-
export SMART_COMMIT_MODEL=anthropic/claude-sonnet
|
|
500
|
-
export SMART_COMMIT_API_KEY=your-api-key
|
|
501
|
-
```
|
|
502
|
-
|
|
503
|
-
### Run Smart Commit
|
|
504
|
-
|
|
505
|
-
```bash
|
|
506
|
-
smart-commit run
|
|
507
|
-
```
|
|
508
|
-
|
|
509
|
-
This will:
|
|
510
|
-
1. Detect all changed files
|
|
511
|
-
2. Analyze diffs and create summaries
|
|
512
|
-
3. Generate semantic embeddings
|
|
513
|
-
4. Cluster related files
|
|
514
|
-
5. Display a preview of proposed commits
|
|
515
|
-
6. Execute commits upon confirmation
|
|
516
|
-
|
|
517
|
-
## Commands
|
|
518
|
-
|
|
519
|
-
```bash
|
|
520
|
-
# Analyze and create commits
|
|
521
|
-
smart-commit run
|
|
522
|
-
|
|
523
|
-
# Preview without executing
|
|
524
|
-
smart-commit preview
|
|
525
|
-
|
|
526
|
-
# Undo last session
|
|
527
|
-
smart-commit undo
|
|
528
|
-
|
|
529
|
-
# Configure settings
|
|
530
|
-
smart-commit config --show
|
|
531
|
-
|
|
532
|
-
# Diagnostic checks
|
|
533
|
-
smart-commit doctor
|
|
534
|
-
|
|
535
|
-
# Show version
|
|
536
|
-
smart-commit version
|
|
537
|
-
|
|
538
|
-
# Initialize repository
|
|
539
|
-
smart-commit init
|
|
540
|
-
```
|
|
541
|
-
|
|
542
|
-
## Architecture
|
|
543
|
-
|
|
544
|
-
The tool follows a modular pipeline:
|
|
545
|
-
|
|
546
|
-
```
|
|
547
|
-
Repository
|
|
548
|
-
↓
|
|
549
|
-
Git Scanner (git_service.py)
|
|
550
|
-
↓
|
|
551
|
-
Diff Parser (diff_parser.py)
|
|
552
|
-
↓
|
|
553
|
-
File Summarizer (summarizer.py)
|
|
554
|
-
↓
|
|
555
|
-
Embedding Generator (embeddings.py)
|
|
556
|
-
↓
|
|
557
|
-
Semantic Clustering (clustering.py)
|
|
558
|
-
↓
|
|
559
|
-
LLM Cluster Review (ai.py)
|
|
560
|
-
↓
|
|
561
|
-
Commit Message Generator (commit_messages.py)
|
|
562
|
-
↓
|
|
563
|
-
Interactive Preview (preview.py)
|
|
564
|
-
↓
|
|
565
|
-
Git Commit Executor (committer.py)
|
|
566
|
-
```
|
|
567
|
-
|
|
568
|
-
## Configuration
|
|
569
|
-
|
|
570
|
-
Smart Commit looks for configuration in this order:
|
|
571
|
-
|
|
572
|
-
1. `~/.smart_commit/config.yaml`
|
|
573
|
-
2. Environment variables (`SMART_COMMIT_*`)
|
|
574
|
-
3. Default values
|
|
575
|
-
|
|
576
|
-
### Example config.yaml
|
|
577
|
-
|
|
578
|
-
```yaml
|
|
579
|
-
provider: openrouter
|
|
580
|
-
model: anthropic/claude-sonnet
|
|
581
|
-
embedding_model: all-MiniLM-L6-v2
|
|
582
|
-
max_files_per_commit: 8
|
|
583
|
-
interactive: true
|
|
584
|
-
auto_push: false
|
|
585
|
-
conventional_commits: true
|
|
586
|
-
use_local_embeddings: true
|
|
587
|
-
```
|
|
588
|
-
|
|
589
|
-
## Supported LLM Providers
|
|
590
|
-
|
|
591
|
-
Smart Commit uses [LiteLLM](https://github.com/BerriAI/litellm) to support:
|
|
592
|
-
|
|
593
|
-
- OpenRouter
|
|
594
|
-
- OpenAI
|
|
595
|
-
- Anthropic
|
|
596
|
-
- Gemini
|
|
597
|
-
- Groq
|
|
598
|
-
- Azure OpenAI
|
|
599
|
-
- Local models (Ollama, LM Studio, etc.)
|
|
600
|
-
|
|
601
|
-
## Development
|
|
602
|
-
|
|
603
|
-
### Project Structure
|
|
604
|
-
|
|
605
|
-
```
|
|
606
|
-
smart_commit/
|
|
607
|
-
├── __init__.py
|
|
608
|
-
├── cli.py # Command-line interface
|
|
609
|
-
├── config.py # Configuration management
|
|
610
|
-
├── models.py # Data models
|
|
611
|
-
├── utils.py # Utility functions
|
|
612
|
-
├── git_service.py # Git operations
|
|
613
|
-
├── diff_parser.py # Diff parsing
|
|
614
|
-
├── summarizer.py # Summary generation
|
|
615
|
-
├── embeddings.py # Embedding generation
|
|
616
|
-
├── clustering.py # File clustering
|
|
617
|
-
├── ai.py # LLM analysis
|
|
618
|
-
├── commit_messages.py # Message generation
|
|
619
|
-
├── preview.py # Interactive UI
|
|
620
|
-
└── committer.py # Commit execution
|
|
621
|
-
tests/
|
|
622
|
-
├── __init__.py
|
|
623
|
-
├── test_git_service.py
|
|
624
|
-
├── test_diff_parser.py
|
|
625
|
-
└── test_clustering.py
|
|
626
|
-
pyproject.toml
|
|
627
|
-
README.md
|
|
628
|
-
```
|
|
629
|
-
|
|
630
|
-
### Development Setup
|
|
631
|
-
|
|
632
|
-
```bash
|
|
633
|
-
# Clone the repository
|
|
634
|
-
git clone https://github.com/hamxa296/Smart-Commit.git
|
|
635
|
-
cd Smart-Commit
|
|
636
|
-
|
|
637
|
-
# Create virtual environment
|
|
638
|
-
python -m venv venv
|
|
639
|
-
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
640
|
-
|
|
641
|
-
# Install in development mode with dev dependencies
|
|
642
|
-
pip install -e ".[dev]"
|
|
643
|
-
|
|
644
|
-
# Run tests
|
|
645
|
-
pytest
|
|
646
|
-
|
|
647
|
-
# Run linting
|
|
648
|
-
ruff check smart_commit tests
|
|
649
|
-
black --check smart_commit tests
|
|
650
|
-
|
|
651
|
-
# Format code
|
|
652
|
-
black smart_commit tests
|
|
653
|
-
ruff check --fix smart_commit tests
|
|
654
|
-
```
|
|
655
|
-
|
|
656
|
-
## Milestones
|
|
657
|
-
|
|
658
|
-
### Milestone 1: ✅ Foundation (Complete)
|
|
659
|
-
- Repository detection
|
|
660
|
-
- Changed file discovery
|
|
661
|
-
- Git wrapper
|
|
662
|
-
- Deliverable: Basic repository scanner
|
|
663
|
-
|
|
664
|
-
### Milestone 2: In Progress
|
|
665
|
-
- Diff parser
|
|
666
|
-
- Structured diff representation
|
|
667
|
-
- Deliverable: Readable summaries of code changes
|
|
668
|
-
|
|
669
|
-
### Milestone 3: Planned
|
|
670
|
-
- Rule-based grouping
|
|
671
|
-
- Conventional Commit generation
|
|
672
|
-
- Terminal preview
|
|
673
|
-
- Deliverable: Working MVP
|
|
674
|
-
|
|
675
|
-
### Milestone 4: Planned
|
|
676
|
-
- Embedding generation
|
|
677
|
-
- Semantic clustering
|
|
678
|
-
- Deliverable: Cross-folder logical commit grouping
|
|
679
|
-
|
|
680
|
-
### Milestone 5: Planned
|
|
681
|
-
- LLM cluster refinement
|
|
682
|
-
- AI-generated commit messages
|
|
683
|
-
- Deliverable: High-quality commit history
|
|
684
|
-
|
|
685
|
-
### Milestone 6: Planned
|
|
686
|
-
- Interactive editing
|
|
687
|
-
- Undo support
|
|
688
|
-
- Session management
|
|
689
|
-
- Deliverable: Production-ready CLI
|
|
690
|
-
|
|
691
|
-
### Milestone 7: Planned
|
|
692
|
-
- Learning mode
|
|
693
|
-
- Plugins
|
|
694
|
-
- IDE integration
|
|
695
|
-
- PR generation
|
|
696
|
-
- PyPI packaging
|
|
697
|
-
- Deliverable: Polished, extensible developer tool
|
|
698
|
-
|
|
699
|
-
## Why Smart Commit?
|
|
700
|
-
|
|
701
|
-
### Without Smart Commit
|
|
702
|
-
```
|
|
703
|
-
$ git status
|
|
704
|
-
modified: src/auth/login.ts
|
|
705
|
-
modified: src/api/routes.ts
|
|
706
|
-
modified: README.md
|
|
707
|
-
modified: src/auth/jwt.ts
|
|
708
|
-
|
|
709
|
-
$ git add src/auth/login.ts
|
|
710
|
-
$ git add src/auth/jwt.ts
|
|
711
|
-
$ git commit -m "feat(auth): improve login validation"
|
|
712
|
-
# 15 min later...
|
|
713
|
-
```
|
|
714
|
-
|
|
715
|
-
### With Smart Commit
|
|
716
|
-
```
|
|
717
|
-
$ smart-commit run
|
|
718
|
-
Found 4 changed files
|
|
719
|
-
|
|
720
|
-
✓ Proposed commits:
|
|
721
|
-
1. feat(auth): improve login validation and session handling
|
|
722
|
-
2. docs: update README
|
|
723
|
-
|
|
724
|
-
$ [accept] to execute, [e]dit to modify, [s]plit to separate
|
|
725
|
-
# 30 seconds later...
|
|
726
|
-
```
|
|
727
|
-
|
|
728
|
-
## Contributing
|
|
729
|
-
|
|
730
|
-
We welcome contributions! Areas where help is needed:
|
|
731
|
-
|
|
732
|
-
- [ ] Improve diff parsing for different languages
|
|
733
|
-
- [ ] Add support for more LLM providers
|
|
734
|
-
- [ ] Implement learning mode for user preferences
|
|
735
|
-
- [ ] Create IDE extensions (VS Code, JetBrains)
|
|
736
|
-
- [ ] Optimize clustering algorithm
|
|
737
|
-
- [ ] Add comprehensive test coverage
|
|
738
|
-
- [ ] Documentation improvements
|
|
739
|
-
|
|
740
|
-
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
741
|
-
|
|
742
|
-
## License
|
|
743
|
-
|
|
744
|
-
MIT License - See [LICENSE](LICENSE) file for details.
|
|
745
|
-
|
|
746
|
-
## Authors
|
|
747
|
-
|
|
748
|
-
- Smart Commit Contributors
|
|
749
|
-
|
|
750
|
-
## Support
|
|
751
|
-
|
|
752
|
-
- 📖 Documentation: See [docs/](docs/) directory
|
|
753
|
-
- 🐛 Bug Reports: GitHub Issues
|
|
754
|
-
- 💬 Discussions: GitHub Discussions
|
|
755
|
-
- 📧 Email: support@smartcommit.dev
|
|
756
|
-
|
|
757
|
-
## Roadmap
|
|
758
|
-
|
|
759
|
-
- [ ] Interactive commit editing
|
|
760
|
-
- [ ] Learning mode for user preferences
|
|
761
|
-
- [ ] Framework-specific plugins (React, Django, Next.js, etc.)
|
|
762
|
-
- [ ] IDE extensions (VS Code, Cursor, Windsurf, JetBrains)
|
|
763
|
-
- [ ] Pull request generation
|
|
764
|
-
- [ ] CI/CD integration
|
|
765
|
-
- [ ] Team mode with shared configurations
|
|
766
|
-
- [ ] Analytics and insights
|
|
767
|
-
|
|
768
|
-
---
|
|
769
455
|
|
|
770
|
-
**Made with ❤️ for better Git workflows**
|
|
771
456
|
|
|
@@ -138,6 +138,8 @@ class RepositoryScanner:
|
|
|
138
138
|
["git", *args],
|
|
139
139
|
cwd=self.repo_path,
|
|
140
140
|
text=True,
|
|
141
|
+
encoding="utf-8",
|
|
142
|
+
errors="replace",
|
|
141
143
|
capture_output=True,
|
|
142
144
|
check=False,
|
|
143
145
|
)
|
|
@@ -151,6 +153,8 @@ class RepositoryScanner:
|
|
|
151
153
|
["git", "rev-parse", "--show-toplevel"],
|
|
152
154
|
cwd=path,
|
|
153
155
|
text=True,
|
|
156
|
+
encoding="utf-8",
|
|
157
|
+
errors="replace",
|
|
154
158
|
capture_output=True,
|
|
155
159
|
check=False,
|
|
156
160
|
)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"summaries_f7707885b44d20743f040267e0d7dfb4": "Added _extract_js_functions. Introduced dependencies on import tree_sitter_javascript as ts_js, import tree_sitter.", "summaries_38c82d20a03c5c23c011ec7b980b9c32": "Introduced dependencies on from ..cache import cache_manager.", "summaries_19dbd2b0784c9333dd2e15c9887c134e": "Added command_benchmark. Introduced dependencies on from .preview import PreviewRenderer, InteractiveEditor, from ric...", "summaries_9fdcbae5302c84770ce2fa1542dedbb3": "Added _generate_reason.", "summaries_21b5c866caccdc3b0cb852b01b6caee2": "Introduced dependencies on from ..cache import cache_manager.", "summaries_a3f82fe7357e6a66d247221408f03572": "Removed _check_symbol_overlap, _check_import_overlap, _filename_similarity. Introduced dependencies on from typing im...", "summaries_26608a8e89bb53e7eb0d602cd4bd5d38": "Added SymbolExtraction.", "summaries_1fed4521e7148f507c5d5b3754c4c7df": "Removed get_commit_hints, should_group_files, get_ignored_files. Introduced dependencies on from .django import Djang...", "summaries_3ad48235cc842c941fc3dd5652897e4a": "Introduced dependencies on editor, from .editor import InteractiveEditor.", "summaries_884708e8befad05a8f1bdd2af24d0681": "Removed get_confirmation, edit_messages.", "summaries_46b37c32018786696e440af3acde1904": "Added __init__, SymbolExtractor, extract_symbols. Introduced dependencies on from ..models import FileDiff, SymbolExt...", "summaries_8cf0e55c6fa9911533b4edb367e9714c": "Added BenchmarkHarness, __init__, run. Introduced dependencies on pathlib, import time, from rich.table import Table.", "summaries_ee7eb86c1e08e80c2d4206d6e804bd13": "Added _save_cache, __init__, set and more. Introduced dependencies on import hashlib, pathlib, hashlib.", "summaries_064200f53ebaecc9706b88b7d11f731f": "Added get_commit_hints, DjangoPlugin, get_ignored_files. Introduced dependencies on from .base import Plugin, models,...", "summaries_33ae44914ed1b80b157c3abec6e05775": "Added get_commit_hints, FastAPIPlugin, get_ignored_files. Introduced dependencies on from .base import Plugin, models...", "summaries_3cdb1e4acac84ec15485964c7d3d32fc": "Added get_commit_hints, ReactPlugin, should_group_files and more. Introduced dependencies on from .base import Plugin...", "summaries_0293e572a27e36cdd97473558cb160c5": "Added InteractiveEditor, _action_delete, __init__ and more. Introduced dependencies on uuid, from .renderer import Pr...", "summaries_1cf2566b79cab33f4d50464f4b159119": "Added new content", "summaries_274a78a8c939c5b5a438d03a82704fd1": "Added test. Introduced dependencies on import os, networkx, os.", "dependency_graph_77928d4edaed701f6e3835d1b6d2292c": [["smart_commit/execution/committer.py", "utils"], ["smart_commit/clustering/__init__.py", "heuristic"], ["smart_commit/cli.py", "git"], ["smart_commit/utils.py", "os"], ["smart_commit/config.py", "typing"], ["dummy_file.py", "networkx"], ["smart_commit/utils.py", "typing"], ["smart_commit/plugins/base.py", "react"], ["smart_commit/preview/renderer.py", "constants"], ["smart_commit/git/service.py", "models"], ["tests/test_git_service.py", "smart_commit.git_service"], ["smart_commit/benchmark.py", "pathlib"], ["smart_commit/embeddings/similarity.py", "logger"], ["smart_commit/ai/reviewer.py", "logger"], ["smart_commit/ai/client.py", "re"], ["smart_commit/logger.py", "typing"], ["smart_commit/embeddings/generator.py", "logger"], ["smart_commit/embeddings/__init__.py", "similarity"], ["smart_commit/git_service.py", "git.exc"], ["smart_commit/analysis/summarizer.py", "models"], ["smart_commit/clustering/graph_clustering.py", "models"], ["smart_commit/plugins/django.py", "typing"], ["smart_commit/benchmark.py", "git"], ["smart_commit/diff_parser.py", "re"], ["smart_commit/clustering/graph_clustering.py", "numpy"], ["smart_commit/embeddings/similarity.py", "analysis.dependency_graph"], ["smart_commit/preview/editor.py", "rich.console"], ["smart_commit/analysis/summarizer.py", "diff_parser"], ["smart_commit/preview/renderer.py", "rich.table"], ["smart_commit/clustering/semantic.py", "analysis.dependency_graph"], ["smart_commit/preview/editor.py", "typing"], ["smart_commit/git/service.py", "subprocess"], ["smart_commit/utils.py", "sys"], ["smart_commit/plugins/base.py", "logger"], ["tests/test_commit_messages.py", "pytest"], ["smart_commit/plugins/fastapi.py", "base"], ["smart_commit/benchmark.py", "time"], ["smart_commit/logger.py", "sys"], ["smart_commit/preview/renderer.py", "rich.panel"], ["smart_commit/committer.py", "models"], ["smart_commit/cache.py", "logger"], ["smart_commit/config.py", "pathlib"], ["smart_commit/utils.py", "pathlib"], ["smart_commit/git_service.py", "models"], ["smart_commit/git/__init__.py", "scanner"], ["smart_commit/analysis/symbol_extractor.py", "models"], ["smart_commit/preview/__init__.py", "editor"], ["smart_commit/plugins/django.py", "base"], ["smart_commit/logger.py", "pathlib"], ["smart_commit/clustering/heuristic.py", "logger"], ["smart_commit/diff_parser.py", "models"], ["smart_commit/preview/renderer.py", "models"], ["smart_commit/commit_messages.py", "config"], ["smart_commit/git/safety.py", "exceptions"], ["smart_commit/git/__init__.py", "service"], ["smart_commit/clustering/semantic.py", "embeddings"], ["tests/test_git_service.py", "pathlib"], ["smart_commit/cli.py", "exceptions"], ["smart_commit/preview.py", "rich.table"], ["smart_commit/git/scanner.py", "exceptions"], ["tests/test_git_service.py", "git"], ["smart_commit/config.py", "yaml"], ["smart_commit/clustering.py", "sklearn.cluster"], ["dummy_file.py", "os"], ["smart_commit/embeddings/similarity.py", "typing"], ["smart_commit/plugins/react.py", "models"], ["smart_commit/ai/reviewer.py", "typing"], ["smart_commit/analysis/__init__.py", "diff_parser"], ["smart_commit/clustering/graph_clustering.py", "networkx"], ["smart_commit/cli.py", "config"], ["smart_commit/cli.py", "rich.progress"], ["smart_commit/clustering/semantic.py", "typing"], ["tests/test_commit_messages.py", "smart_commit.models"], ["smart_commit/clustering.py", "models"], ["smart_commit/clustering.py", "numpy"], ["smart_commit/logger.py", "logging"], ["smart_commit/committer.py", "git_service"], ["smart_commit/cli.py", "plugins"], ["smart_commit/ai/client.py", "typing"], ["smart_commit/plugins/base.py", "fastapi"], ["smart_commit/analysis/symbol_extractor.py", "typing"], ["smart_commit/embeddings/generator.py", "cache"], ["smart_commit/plugins/base.py", "typing"], ["smart_commit/diff_parser.py", "typing"], ["smart_commit/preview.py", "models"], ["tests/test_git_service.py", "pytest"], ["smart_commit/analysis/ast_parser.py", "tree_sitter"], ["smart_commit/clustering/semantic.py", "logger"], ["smart_commit/ai/reviewer.py", "client"], ["smart_commit/cache.py", "typing"], ["smart_commit/cli.py", "constants"], ["smart_commit/ai/client.py", "constants"], ["smart_commit/ai/client.py", "logger"], ["smart_commit/analysis/symbol_extractor.py", "logger"], ["smart_commit/plugins/fastapi.py", "models"], ["smart_commit/constants.py", "pathlib"], ["smart_commit/ai/reviewer.py", "json"], ["smart_commit/clustering/semantic.py", "pathlib"], ["smart_commit/ai/__init__.py", "client"], ["smart_commit/analysis/symbol_extractor.py", "ast_parser"], ["smart_commit/ai.py", "json"], ["smart_commit/analysis/dependency_graph.py", "os"], ["smart_commit/analysis/dependency_graph.py", "typing"], ["smart_commit/ai.py", "litellm"], ["smart_commit/utils.py", "json"], ["smart_commit/plugins/base.py", "pathlib"], ["smart_commit/commit_messages.py", "models"], ["smart_commit/git/__init__.py", "safety"], ["smart_commit/git/service.py", "typing"], ["smart_commit/preview/renderer.py", "rich.tree"], ["smart_commit/plugins/__init__.py", "base"], ["smart_commit/benchmark.py", "rich.table"], ["smart_commit/models.py", "enum"], ["smart_commit/clustering/semantic.py", "graph_clustering"], ["smart_commit/git/service.py", "scanner"], ["smart_commit/cache.py", "pathlib"], ["smart_commit/clustering/graph_clustering.py", "typing"], ["smart_commit/analysis/dependency_graph.py", "logger"], ["smart_commit/execution/committer.py", "models"], ["smart_commit/clustering/__init__.py", "semantic"], ["smart_commit/clustering/graph_clustering.py", "networkx.algorithms.community"], ["smart_commit/cli.py", "analysis"], ["smart_commit/models.py", "dataclasses"], ["smart_commit/cli.py", "models"], ["smart_commit/analysis/dependency_graph.py", "ast_parser"], ["smart_commit/git/service.py", "logger"], ["smart_commit/analysis/diff_parser.py", "re"], ["smart_commit/git/scanner.py", "models"], ["tests/test_clustering.py", "pytest"], ["smart_commit/summarizer.py", "diff_parser"], ["smart_commit/utils.py", "datetime"], ["smart_commit/analysis/dependency_graph.py", "pathlib"], ["smart_commit/preview.py", "rich.panel"], ["smart_commit/committer.py", "typing"], ["smart_commit/analysis/summarizer.py", "logger"], ["smart_commit/clustering/graph_clustering.py", "logger"], ["smart_commit/preview/editor.py", "rich.prompt"], ["smart_commit/benchmark.py", "analysis"], ["smart_commit/logger.py", "datetime"], ["smart_commit/preview/editor.py", "renderer"], ["smart_commit/commit_messages.py", "typing"], ["smart_commit/git_service.py", "typing"], ["smart_commit/git/service.py", "pathlib"], ["smart_commit/preview/renderer.py", "rich.console"], ["smart_commit/git/scanner.py", "subprocess"], ["smart_commit/cli.py", "analysis.symbol_extractor"], ["tests/test_diff_parser.py", "smart_commit.diff_parser"], ["smart_commit/embeddings/generator.py", "models"], ["smart_commit/clustering.py", "embeddings"], ["smart_commit/embeddings/generator.py", "numpy"], ["smart_commit/execution/__init__.py", "committer"], ["smart_commit/plugins/base.py", "django"], ["tests/test_commit_messages.py", "smart_commit.commit_messages"], ["smart_commit/analysis/diff_parser.py", "models"], ["tests/test_git_service.py", "git.exc"], ["smart_commit/git/scanner.py", "dataclasses"], ["smart_commit/benchmark.py", "analysis.symbol_extractor"], ["smart_commit/git/scanner.py", "constants"], ["smart_commit/cli.py", "execution"], ["smart_commit/plugins/react.py", "typing"], ["smart_commit/committer.py", "pathlib"], ["smart_commit/ai.py", "config"], ["smart_commit/embeddings.py", "models"], ["smart_commit/cli.py", "clustering"], ["smart_commit/embeddings.py", "numpy"], ["smart_commit/utils.py", "hashlib"], ["smart_commit/clustering.py", "typing"], ["tests/test_diff_parser.py", "pytest"], ["tests/test_clustering.py", "smart_commit.models"], ["smart_commit/ai/client.py", "json"], ["smart_commit/git_service.py", "pathlib"], ["smart_commit/execution/committer.py", "logger"], ["smart_commit/analysis/ast_parser.py", "tree_sitter_javascript"], ["smart_commit/git/safety.py", "logger"], ["smart_commit/plugins/django.py", "models"], ["smart_commit/cli.py", "sys"], ["smart_commit/cli.py", "logger"], ["smart_commit/preview.py", "rich.console"], ["smart_commit/ai/client.py", "litellm"], ["smart_commit/git_service.py", "git"], ["smart_commit/ai/__init__.py", "reviewer"], ["smart_commit/benchmark.py", "clustering"], ["smart_commit/cli.py", "commit_messages"], ["smart_commit/utils.py", "uuid"], ["smart_commit/preview/editor.py", "models"], ["smart_commit/preview.py", "typing"], ["smart_commit/analysis/dependency_graph.py", "cache"], ["smart_commit/embeddings/similarity.py", "constants"], ["smart_commit/clustering/heuristic.py", "models"], ["smart_commit/embeddings/generator.py", "constants"], ["smart_commit/cache.py", "json"], ["smart_commit/embeddings/similarity.py", "generator"], ["smart_commit/ai/client.py", "time"], ["smart_commit/plugins/react.py", "base"], ["smart_commit/embeddings.py", "sentence_transformers"], ["smart_commit/clustering/semantic.py", "heuristic"], ["smart_commit/plugins/fastapi.py", "typing"], ["smart_commit/config.py", "dataclasses"], ["smart_commit/preview/editor.py", "uuid"], ["smart_commit/summarizer.py", "models"], ["smart_commit/analysis/summarizer.py", "cache"], ["smart_commit/config.py", "os"], ["smart_commit/benchmark.py", "analysis.dependency_graph"], ["smart_commit/models.py", "typing"], ["smart_commit/embeddings.py", "typing"], ["smart_commit/logger.py", "constants"], ["smart_commit/analysis/ast_parser.py", "typing"], ["smart_commit/cli.py", "argparse"], ["smart_commit/analysis/ast_parser.py", "ast"], ["smart_commit/embeddings/__init__.py", "generator"], ["smart_commit/analysis/diff_parser.py", "logger"], ["smart_commit/analysis/__init__.py", "summarizer"], ["smart_commit/clustering/semantic.py", "sklearn.cluster"], ["smart_commit/analysis/ast_parser.py", "logger"], ["smart_commit/embeddings/similarity.py", "models"], ["smart_commit/git/service.py", "utils"], ["smart_commit/ai/reviewer.py", "models"], ["smart_commit/embeddings/similarity.py", "numpy"], ["smart_commit/git/safety.py", "typing"], ["smart_commit/clustering/semantic.py", "models"], ["smart_commit/clustering/semantic.py", "numpy"], ["smart_commit/ai/client.py", "exceptions"], ["smart_commit/ai.py", "models"], ["smart_commit/cli.py", "typing"], ["smart_commit/summarizer.py", "typing"], ["smart_commit/git/scanner.py", "typing"], ["smart_commit/plugins/base.py", "models"], ["smart_commit/benchmark.py", "rich.console"], ["smart_commit/cli.py", "preview"], ["smart_commit/analysis/symbol_extractor.py", "diff_parser"], ["smart_commit/ai/client.py", "config"], ["smart_commit/constants.py", "enum"], ["tests/test_clustering.py", "smart_commit.clustering"], ["smart_commit/analysis/dependency_graph.py", "networkx"], ["smart_commit/cli.py", "benchmark"], ["smart_commit/cache.py", "hashlib"], ["smart_commit/committer.py", "utils"], ["smart_commit/config.py", "dotenv"], ["smart_commit/embeddings/generator.py", "sentence_transformers"], ["smart_commit/embeddings/similarity.py", "dataclasses"], ["smart_commit/preview/__init__.py", "renderer"], ["smart_commit/git_service.py", "utils"], ["smart_commit/plugins/base.py", "abc"], ["smart_commit/git/safety.py", "pathlib"], ["smart_commit/clustering/semantic.py", "constants"], ["smart_commit/embeddings/generator.py", "typing"], ["smart_commit/cli.py", "pathlib"], ["smart_commit/cli.py", "ai"], ["smart_commit/execution/committer.py", "git"], ["smart_commit/ai.py", "typing"], ["smart_commit/git/scanner.py", "pathlib"]], "summaries_943f2588ea9722c748559a67cc995b24": "Modified file", "summaries_07aee2946b00c8a027fe803f7fafa791": "Modified content"}
|
|
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
|
{smart_commit_cli-0.1.0 → smart_commit_cli-0.2.0}/smart_commit/clustering/graph_clustering.py
RENAMED
|
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
|
|
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
|