bugbee 0.1.0__tar.gz → 0.1.2__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.
- {bugbee-0.1.0 → bugbee-0.1.2}/PKG-INFO +15 -15
- {bugbee-0.1.0 → bugbee-0.1.2}/README.md +14 -14
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/ui.py +5 -5
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee.egg-info/PKG-INFO +15 -15
- {bugbee-0.1.0 → bugbee-0.1.2}/pyproject.toml +1 -1
- {bugbee-0.1.0 → bugbee-0.1.2}/LICENSE +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/cache/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/cli/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/cli/main.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/config/settings.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/lazy.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/legacy.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/llm/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/metrics/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/parser/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/parser/error_parser.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/patcher/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/retrieval/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/utils/logging.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee/validator/__init__.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee.egg-info/SOURCES.txt +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee.egg-info/dependency_links.txt +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee.egg-info/entry_points.txt +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee.egg-info/requires.txt +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/bugbee.egg-info/top_level.txt +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/setup.cfg +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/tests/test.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/tests/test2.py +0 -0
- {bugbee-0.1.0 → bugbee-0.1.2}/tests/test_parser.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bugbee
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: AI-powered CLI debugging and auto-repair tool with RAG, automatic patch generation, and validation.
|
|
5
5
|
Author-email: Pranav Kurmadasu <kurmadasu.pranav@example.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -46,7 +46,7 @@ Requires-Dist: build>=1.2.1; extra == "dev"
|
|
|
46
46
|
Requires-Dist: twine>=5.1.1; extra == "dev"
|
|
47
47
|
Dynamic: license-file
|
|
48
48
|
|
|
49
|
-
#
|
|
49
|
+
# BugBee
|
|
50
50
|
|
|
51
51
|
> **AI-powered CLI debugging assistant that automatically analyzes runtime errors, retrieves relevant documentation using RAG, and suggests or applies intelligent fixes.**
|
|
52
52
|
|
|
@@ -54,19 +54,19 @@ BugBee wraps your terminal commands, intercepts runtime failures, analyzes the t
|
|
|
54
54
|
|
|
55
55
|
---
|
|
56
56
|
|
|
57
|
-
##
|
|
58
|
-
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
57
|
+
## Features
|
|
58
|
+
|
|
59
|
+
* AI-powered debugging using **DeepSeek-R1**
|
|
60
|
+
* Retrieval-Augmented Generation (RAG) using **ChromaDB**
|
|
61
|
+
* Automatic traceback parsing
|
|
62
|
+
* Context-aware code analysis
|
|
63
|
+
* Retrieval from official framework documentation
|
|
64
|
+
* SHA256-based intelligent response caching
|
|
65
|
+
* Automatic code patch generation
|
|
66
|
+
* Validation after applying fixes
|
|
67
|
+
* Metrics collection
|
|
68
|
+
* Cross-platform support (Windows, Linux, macOS)
|
|
69
|
+
* Packaged for PyPI
|
|
70
70
|
|
|
71
71
|
---
|
|
72
72
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# BugBee
|
|
2
2
|
|
|
3
3
|
> **AI-powered CLI debugging assistant that automatically analyzes runtime errors, retrieves relevant documentation using RAG, and suggests or applies intelligent fixes.**
|
|
4
4
|
|
|
@@ -6,19 +6,19 @@ BugBee wraps your terminal commands, intercepts runtime failures, analyzes the t
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
##
|
|
10
|
-
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
* AI-powered debugging using **DeepSeek-R1**
|
|
12
|
+
* Retrieval-Augmented Generation (RAG) using **ChromaDB**
|
|
13
|
+
* Automatic traceback parsing
|
|
14
|
+
* Context-aware code analysis
|
|
15
|
+
* Retrieval from official framework documentation
|
|
16
|
+
* SHA256-based intelligent response caching
|
|
17
|
+
* Automatic code patch generation
|
|
18
|
+
* Validation after applying fixes
|
|
19
|
+
* Metrics collection
|
|
20
|
+
* Cross-platform support (Windows, Linux, macOS)
|
|
21
|
+
* Packaged for PyPI
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
@@ -117,17 +117,17 @@ class UI:
|
|
|
117
117
|
def location_found(self, file_path: str, line_number: int) -> None:
|
|
118
118
|
_log.debug(f"Extracted location: {file_path}:{line_number}")
|
|
119
119
|
self.console.print(
|
|
120
|
-
f"[bugbee.info]
|
|
120
|
+
f"[bugbee.info]Located error at[/] [bugbee.path]{file_path}:{line_number}[/]"
|
|
121
121
|
)
|
|
122
122
|
|
|
123
123
|
def location_not_found(self) -> None:
|
|
124
124
|
_log.debug("Could not determine source location from stderr.")
|
|
125
|
-
self.console.print("[bugbee.warning]
|
|
125
|
+
self.console.print("[bugbee.warning]Could not determine the source location.[/]")
|
|
126
126
|
|
|
127
127
|
def cache_hit(self) -> None:
|
|
128
128
|
_log.info("Cache hit – using previously generated response.")
|
|
129
129
|
self.console.print(
|
|
130
|
-
"[bugbee.info]
|
|
130
|
+
"[bugbee.info]Cache hit[/] [bugbee.muted]— reusing a previous analysis.[/]"
|
|
131
131
|
)
|
|
132
132
|
|
|
133
133
|
def cache_miss(self) -> None:
|
|
@@ -136,7 +136,7 @@ class UI:
|
|
|
136
136
|
|
|
137
137
|
def cache_cleared(self) -> None:
|
|
138
138
|
_log.info("Cache cleared.")
|
|
139
|
-
self.console.print("[bugbee.success]
|
|
139
|
+
self.console.print("[bugbee.success]Cache cleared.[/]")
|
|
140
140
|
|
|
141
141
|
def retrieval_stats(self, top_score: float, avg_score: float) -> None:
|
|
142
142
|
_log.debug(f"Retrieval scores — top: {top_score}, avg: {avg_score}")
|
|
@@ -146,7 +146,7 @@ class UI:
|
|
|
146
146
|
# ------------------------------------------------------------------
|
|
147
147
|
def show_analysis(self, content: str) -> None:
|
|
148
148
|
self.console.print(
|
|
149
|
-
Panel(content, title="
|
|
149
|
+
Panel(content, title="AI Analysis", border_style="cyan", expand=True)
|
|
150
150
|
)
|
|
151
151
|
|
|
152
152
|
# ------------------------------------------------------------------
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bugbee
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: AI-powered CLI debugging and auto-repair tool with RAG, automatic patch generation, and validation.
|
|
5
5
|
Author-email: Pranav Kurmadasu <kurmadasu.pranav@example.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -46,7 +46,7 @@ Requires-Dist: build>=1.2.1; extra == "dev"
|
|
|
46
46
|
Requires-Dist: twine>=5.1.1; extra == "dev"
|
|
47
47
|
Dynamic: license-file
|
|
48
48
|
|
|
49
|
-
#
|
|
49
|
+
# BugBee
|
|
50
50
|
|
|
51
51
|
> **AI-powered CLI debugging assistant that automatically analyzes runtime errors, retrieves relevant documentation using RAG, and suggests or applies intelligent fixes.**
|
|
52
52
|
|
|
@@ -54,19 +54,19 @@ BugBee wraps your terminal commands, intercepts runtime failures, analyzes the t
|
|
|
54
54
|
|
|
55
55
|
---
|
|
56
56
|
|
|
57
|
-
##
|
|
58
|
-
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
57
|
+
## Features
|
|
58
|
+
|
|
59
|
+
* AI-powered debugging using **DeepSeek-R1**
|
|
60
|
+
* Retrieval-Augmented Generation (RAG) using **ChromaDB**
|
|
61
|
+
* Automatic traceback parsing
|
|
62
|
+
* Context-aware code analysis
|
|
63
|
+
* Retrieval from official framework documentation
|
|
64
|
+
* SHA256-based intelligent response caching
|
|
65
|
+
* Automatic code patch generation
|
|
66
|
+
* Validation after applying fixes
|
|
67
|
+
* Metrics collection
|
|
68
|
+
* Cross-platform support (Windows, Linux, macOS)
|
|
69
|
+
* Packaged for PyPI
|
|
70
70
|
|
|
71
71
|
---
|
|
72
72
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "bugbee"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "AI-powered CLI debugging and auto-repair tool with RAG, automatic patch generation, and validation."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11,<3.13"
|
|
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
|