Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions commandor/main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
from dotenv import load_dotenv

# Load environment variables from .env file
load_dotenv()


#!/usr/bin/env python3
"""
Commandor - An intelligent terminal assistant
Expand Down
44 changes: 37 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,37 @@
setuptools
google-generativeai>=0.3.0
python-decouple>=3.6
pyreadline3>=3.4.1; platform_system=="Windows"
python-decouple
rich>=10.0.0
colorama>=0.4.4
annotated-types==0.7.0
cachetools==6.2.0
certifi==2025.8.3
charset-normalizer==3.4.3
colorama==0.4.6
-e git+https://github.com/maitri-vv/Commandor.git@d9739d38c80bb4b5b689867954632f091644836d#egg=commandor_ai
google-ai-generativelanguage==0.6.15
google-api-core==2.25.2
google-api-python-client==2.184.0
google-auth==2.41.1
google-auth-httplib2==0.2.0
google-generativeai==0.8.5
googleapis-common-protos==1.70.0
grpcio==1.75.1
grpcio-status==1.71.2
httplib2==0.31.0
idna==3.10
markdown-it-py==4.0.0
mdurl==0.1.2
proto-plus==1.26.1
protobuf==5.29.5
pyasn1==0.6.1
pyasn1_modules==0.4.2
pydantic==2.11.10
pydantic_core==2.33.2
Pygments==2.19.2
pyparsing==3.2.5
python-decouple==3.8
python-dotenv==1.1.1
requests==2.32.5
rich==14.1.0
rsa==4.9.1
tqdm==4.67.1
typing-inspection==0.4.2
typing_extensions==4.15.0
uritemplate==4.2.0
urllib3==2.5.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"pyreadline3>=3.4.1; platform_system=='Windows'",
"colorama>=0.4.4", # For cross-platform colored output
"rich>=10.0.0,<14.0.0",
"python-dotenv>=1.0.0",
],
entry_points={
"console_scripts": [
Expand Down