You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A possible fix for the Issue (which needs discussion):
The problem seems to be when we are adding prompt += """. Which can be proven, by removing the line, and fixing the problem. The thing is, I don't know what was actually intended (it could be adding a quote, which can be solved by escaping it, or surround it using single quotes if what was intended was to add triple quotes).
Steps to reproduce:
git clone https://github.com/opensouls/terminal-copilot.git
cd terminal-copilot
python3 -m venv .venv
is used to create a new environment.source .venv/bin/activate
.pip install -r requirements.txt
.python3 setup.py install
copilot
:Details about my environment:
A possible fix for the Issue (which needs discussion):
The problem seems to be when we are adding
prompt += """
. Which can be proven, by removing the line, and fixing the problem. The thing is, I don't know what was actually intended (it could be adding a quote, which can be solved by escaping it, or surround it using single quotes if what was intended was to add triple quotes).https://github.com/opensouls/terminal-copilot/blob/2bca75d526a4ed2712a803a479241c77db7e5d9a/copilot/main.py#LL83C1-L89C47
The text was updated successfully, but these errors were encountered: