-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[groq] updated readme for the new instructions #1405
Conversation
extensions/Groq/README.md
Outdated
|
||
Create an API key from the Groq [website](https://console.groq.com/keys) and save it in your environment under the name `GROQ_API_KEY`. We recommend saving it into your home `~/.env` file, or one of your home hidden files like `~/.bashrc` or `~/.zshrc` so that you don't need to redefine it every session whenever you open a new terminal: | ||
1. Create an API key from the Groq [website](https://console.groq.com/keys). | ||
2. Add the key to your home `~/env` file: `GROQ_API_KEY = '<your-api-key>'` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GROQ_API_KEY = '<your-api-key>'
shouldn't have spaces, make it GROQ_API_KEY='<your-api-key>'
extensions/Groq/README.md
Outdated
|
||
`pip3 install aiconfig-extension-groq` | ||
NOTE: When new models are supported by the GroqAPI that you want to use, make sure to manually add them to this file (similar to how mixtral-8x7b-32768 was registered for example). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add backticks: mixtral-8x7b-32768
extensions/Groq/README.md
Outdated
|
||
You can now use either the AIConfig SDK, VS Code extension, or local editor to use the Groq client to play around with models, modify prompts, change parameters, etc. | ||
1. CMD+Shift+P and enter `'AIConfig: Create new AIConfig (yaml)'` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use backticks for CMD+Shift+P
extensions/Groq/README.md
Outdated
|
||
You can now use either the AIConfig SDK, VS Code extension, or local editor to use the Groq client to play around with models, modify prompts, change parameters, etc. | ||
1. CMD+Shift+P and enter `'AIConfig: Create new AIConfig (yaml)'` | ||
2. Groq models (ex. mixtral-8x7b-32768) will now be available via model dropdown for your prompts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use backticks for mixtral-8x7b-32768
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update comments pls
addressed comments
[groq] updated readme for the new instructions
addressed comments