opensouls / terminal-copilot

A smart terminal assistant that helps you find the right command.
Apache License 2.0
573 stars 43 forks source link

syntax error in suggested environment variable set #3

Closed alexxcollins closed 1 year ago

alexxcollins commented 1 year ago

On first use, it is helpfully suggested to export the OpenAI key.

Line 60: print("export OPENAI_API_KEY = <your key>")

Following this exactly give an error: "zsh: bad assignment"

If you remove the spaces from the export suggestion, users won't have to google the correct syntax:

print("export OPENAI_API_KEY=<your key>")

Thanks for building a great little tool :-)

JoelKronander commented 1 year ago

Thanks! Great find! Fixed!