-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from stephenfreund/main
Rewrite of ChatDBG for python
- Loading branch information
Showing
34 changed files
with
1,201 additions
and
85,142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,3 @@ jobs: | |
- name: Check calling executables directly | ||
run: | | ||
chatdbg --help | ||
ichatdbg --help |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ authors = [ | |
{ name="Emery Berger", email="[email protected]" }, | ||
{ name="Kyla Levin", email="[email protected]" }, | ||
{ name="Nicolas van Kempen", email="[email protected]" }, | ||
{ name="Stephen Freund", email="[email protected]" }, | ||
{ name="Stephen Freund", email="[email protected]" } | ||
] | ||
dependencies = [ | ||
"llm-utils>=0.2.6", | ||
|
@@ -20,6 +20,8 @@ dependencies = [ | |
"ipdb>=0.13.13", | ||
"ipython>=8.21.0", | ||
"litellm>=1.26.6", | ||
"PyYAML>=6.0.1", | ||
"ipyflow>=0.0.130" | ||
] | ||
description = "AI-assisted debugging. Uses AI to answer 'why'." | ||
readme = "README.md" | ||
|
@@ -32,7 +34,6 @@ classifiers = [ | |
|
||
[project.scripts] | ||
chatdbg = "chatdbg.__main__:main" | ||
ichatdbg = "chatdbg.__imain__:main" | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/plasma-umass/ChatDBG" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
from . import chatdbg | ||
from .chatdbg_pdb import * | ||
import ipdb | ||
|
||
chatdbg.main() | ||
def main(): | ||
ipdb.__main__._get_debugger_cls = lambda : ChatDBG | ||
ipdb.__main__.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.