shotgun-sh 0.2.10.dev11__tar.gz → 0.2.10.dev12__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.
Potentially problematic release.
This version of shotgun-sh might be problematic. Click here for more details.
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/PKG-INFO +1 -1
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/pyproject.toml +1 -1
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/manager.py +10 -1
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat.py +5 -1
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/.gitignore +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/LICENSE +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/README.md +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/README_PYPI.md +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/hatch_build.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/agent_manager.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/common.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/config/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/config/constants.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/config/manager.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/config/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/config/provider.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/conversation_history.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/conversation_manager.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/export.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/compaction.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/constants.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/context_extraction.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/history_building.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/history_processors.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/message_utils.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_counting/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_counting/anthropic.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_counting/base.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_counting/openai.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_counting/sentencepiece_counter.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_counting/tokenizer_cache.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_counting/utils.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_estimation.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/llm.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/messages.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/plan.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/research.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/specify.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tasks.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/codebase_shell.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/directory_lister.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/file_read.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/query_graph.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/retrieve_code.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/file_management.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/anthropic.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/gemini.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/openai.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/utils.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/usage_manager.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/api_endpoints.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/build_constants.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/codebase/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/codebase/commands.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/codebase/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/config.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/export.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/feedback.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/plan.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/research.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/specify.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/tasks.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/update.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/cli/utils.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/change_detector.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/code_retrieval.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/cypher_models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/ingestor.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/language_config.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/nl_query.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/parser_loader.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/service.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/llm_proxy/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/llm_proxy/clients.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/llm_proxy/constants.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/logging_config.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/main.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/posthog_telemetry.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/export.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/partials/codebase_understanding.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/partials/common_agent_system_prompt.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/partials/content_formatting.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/partials/interactive_mode.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/plan.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/research.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/specify.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/state/codebase/codebase_graphs_available.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/state/system_state.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/tasks.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/cypher_query_patterns.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/cypher_system.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/enhanced_query_context.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/partials/cypher_rules.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/partials/graph_schema.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/partials/temporal_context.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/history/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/history/incremental_summarization.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/history/summarization.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/loader.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/tools/web_search.j2 +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/py.typed +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/sdk/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/sdk/codebase.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/sdk/exceptions.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/sdk/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/sdk/services.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/sentry_telemetry.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/shotgun_web/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/shotgun_web/client.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/shotgun_web/constants.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/shotgun_web/models.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/telemetry.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/app.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/commands/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/components/prompt_input.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/components/spinner.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/components/splash.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/components/vertical_tail.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/filtered_codebase_service.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat.tcss +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat_screen/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat_screen/command_providers.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat_screen/hint_message.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat_screen/history.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/directory_setup.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/feedback.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/model_picker.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/pipx_migration.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/provider_config.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/shotgun_auth.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/splash.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/welcome.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/styles.tcss +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/utils/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/utils/mode_progress.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/utils/__init__.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/utils/datetime_utils.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/utils/env_utils.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/utils/file_system_utils.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/utils/source_detection.py +0 -0
- {shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/utils/update_checker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: shotgun-sh
|
|
3
|
-
Version: 0.2.10.
|
|
3
|
+
Version: 0.2.10.dev12
|
|
4
4
|
Summary: AI-powered research, planning, and task management CLI tool
|
|
5
5
|
Project-URL: Homepage, https://shotgun.sh/
|
|
6
6
|
Project-URL: Repository, https://github.com/shotgun-sh/shotgun
|
|
@@ -371,7 +371,16 @@ class CodebaseGraphManager:
|
|
|
371
371
|
)
|
|
372
372
|
import shutil
|
|
373
373
|
|
|
374
|
-
|
|
374
|
+
# Handle both files and directories (kuzu v0.11.2+ uses files)
|
|
375
|
+
if graph_path.is_file():
|
|
376
|
+
graph_path.unlink() # Delete file
|
|
377
|
+
# Also delete WAL file if it exists
|
|
378
|
+
wal_path = graph_path.with_suffix(graph_path.suffix + ".wal")
|
|
379
|
+
if wal_path.exists():
|
|
380
|
+
wal_path.unlink()
|
|
381
|
+
logger.debug(f"Deleted WAL file: {wal_path}")
|
|
382
|
+
else:
|
|
383
|
+
shutil.rmtree(graph_path) # Delete directory
|
|
375
384
|
|
|
376
385
|
# Import the builder from local core module
|
|
377
386
|
from shotgun.codebase.core import CodebaseIngestor
|
|
@@ -957,7 +957,11 @@ class ChatScreen(Screen[None]):
|
|
|
957
957
|
f"Failed to index codebase after {attempt + 1} attempts - "
|
|
958
958
|
f"repo_path: {selection.repo_path}, name: {selection.name}, error: {exc}"
|
|
959
959
|
)
|
|
960
|
-
self.notify(
|
|
960
|
+
self.notify(
|
|
961
|
+
f"Failed to index codebase after {attempt + 1} attempts: {exc}",
|
|
962
|
+
severity="error",
|
|
963
|
+
timeout=30, # Keep error visible for 30 seconds
|
|
964
|
+
)
|
|
961
965
|
break
|
|
962
966
|
|
|
963
967
|
# Always stop the progress timer and clean up label
|
|
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
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/conversation_history.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/conversation_manager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/compaction.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/context_extraction.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/history_building.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/history_processors.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/message_utils.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
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/history/token_estimation.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
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/file_read.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/models.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/codebase/query_graph.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/file_management.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/anthropic.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/gemini.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/openai.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/agents/tools/web_search/utils.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
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/change_detector.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/code_retrieval.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/cypher_models.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/language_config.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/codebase/core/parser_loader.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
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/agents/state/system_state.j2
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/codebase/cypher_system.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/prompts/history/summarization.j2
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
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/components/prompt_input.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/components/vertical_tail.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/filtered_codebase_service.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat_screen/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/chat_screen/history.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/directory_setup.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/pipx_migration.py
RENAMED
|
File without changes
|
{shotgun_sh-0.2.10.dev11 → shotgun_sh-0.2.10.dev12}/src/shotgun/tui/screens/provider_config.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
|