Skip to content

Commit

Permalink
Merge pull request #19 from dougollerenshaw/fix_issue_18
Browse files Browse the repository at this point in the history
Fix issue 18
  • Loading branch information
dougollerenshaw authored Sep 19, 2024
2 parents d26921a + 187f858 commit 1fd8001
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codeaide.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
from PyQt5.QtWidgets import QApplication
from codeaide.logic.chat_handler import ChatHandler
from codeaide.ui.chat_window import ChatWindow
from codeaide.utils import api_utils

def main():
chat_handler = ChatHandler()

if len(sys.argv) > 1 and sys.argv[1] == 'test':
success, message = chat_handler.test_api_connection()
success, message = api_utils.test_api_connection()
if success:
print("Connection successful!")
print("Claude says:", message)
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
anthropic==0.34.2
python-decouple==3.8
virtualenv==20.16.2
pyqt5
pyyaml

0 comments on commit 1fd8001

Please sign in to comment.