thiwa
thiwa•6mo ago

Groq (or custom code) on buildship

So I am trying to use a large language model that is really fast. The Groq APIs (with Mixtral) is the best for my use case. Is there a way to install the groq JavaScript package in an empty node? "npm install" doesn't seem to work #Groq #llm #package installation #👍・feature-request
Solution:
Hey @thiwa, to import a package, all you need to do is simply include the import statement like:
import Groq from 'groq-sdk';
import Groq from 'groq-sdk';
Also, we have now added a new node for Groq Chat in the Node Library. You'll be able to use the mixtral model with Groq directly by choosing that from the Model dropdown. (To try it out, make sure to refresh your buildship.app, and then add the Groq Chat node from the library.)...
No description
Jump to solution
4 Replies
Harini
Harini•6mo ago
@Bhavya - can you check on this and perhaps we can add Groq nodes to our library
Bhavya
Bhavya•6mo ago
Sure, I'll take a look 🫡
Solution
Bhavya
Bhavya•6mo ago
Hey @thiwa, to import a package, all you need to do is simply include the import statement like:
import Groq from 'groq-sdk';
import Groq from 'groq-sdk';
Also, we have now added a new node for Groq Chat in the Node Library. You'll be able to use the mixtral model with Groq directly by choosing that from the Model dropdown. (To try it out, make sure to refresh your buildship.app, and then add the Groq Chat node from the library.)
No description
thiwa
thiwa•6mo ago
You are the bomb. So great you guys are fast!