Navi v0.1.3 - Reloaded
Release Update:
The main change here was the reworked implementation of GPT, while SSG is in the process of building out its Envoy AI Model.
This allows us to have a working model to run in the meantime.
Adding your GPT API KEY (Linux)
1. Open Terminal: You can find it in the Applications folder or search for it using Spotlight (Command + Space).
2. Edit Bash Profile: Use the command nano ~/.bash_profile or nano ~/.zshrc to open the profile file in a text editor.
3. Add Environment Variable: In the editor, add the line below, replacing your-api-key-here with your actual API key:
4. export OPENAI_API_KEY='your-api-key-here'
5. Save and Exit: Press Ctrl+O to write the changes, followed by Ctrl+X to close the editor.
6. Load Your Profile: Use the command source ~/.bash_profile or source ~/.zshrc to load the updated profile.
7. Verification: Verify the setup by typing echo $OPENAI_API_KEY in the terminal. It should display your API key.