-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor done * updating packages * fixing some bugs - WIP - not fully tested yet * new load delete and oneshot are tested * woking on the tests - conversations done, WIP * unit tests are done - onwards to integrationa nd e2e * linting * readme and dependencies update
- Loading branch information
1 parent
2cdf1ea
commit e5e2a34
Showing
23 changed files
with
2,008 additions
and
1,581 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 |
---|---|---|
|
@@ -3,6 +3,7 @@ __pycache__ | |
dist | ||
.vscode | ||
.idea | ||
.pytest_cache | ||
dummy.py | ||
ARCH.md | ||
.coverage* |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[MASTER] | ||
disable=missing-module-docstring, | ||
missing-class-docstring, | ||
missing-function-docstring, | ||
line-too-long, | ||
broad-exception-caught, | ||
too-few-public-methods, | ||
too-many-instance-attributes |
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Current File", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"env": { | ||
"LOG_LEVEL": "DEBUG" | ||
} | ||
}, | ||
{ | ||
"name": "install", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "terminalgpt/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"args": ["install"], | ||
"env": { | ||
"LOG_LEVEL": "DEBUG" | ||
} | ||
}, | ||
{ | ||
"name": "load", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "terminalgpt/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"args": ["load"], | ||
"env": { | ||
"LOG_LEVEL": "DEBUG" | ||
} | ||
}, | ||
{ | ||
"name": "delete", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "terminalgpt/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"args": ["delete"], | ||
"env": { | ||
"LOG_LEVEL": "DEBUG" | ||
} | ||
}, | ||
{ | ||
"name": "new", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "terminalgpt/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"args": ["new"], | ||
"env": { | ||
"LOG_LEVEL": "DEBUG" | ||
} | ||
}, | ||
{ | ||
"name": "one-shot", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "terminalgpt/main.py", | ||
"console": "integratedTerminal", | ||
"justMyCode": true, | ||
"args": ["one-shot", "hello"], | ||
"env": { | ||
"LOG_LEVEL": "DEBUG" | ||
} | ||
} | ||
] | ||
} |
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.