Skip to content

Commit

Permalink
Add new Groq models "llama-3.1-70b-versatile" and "llama-3.1-8b-instant"
Browse files Browse the repository at this point in the history
This commit introduces two new models to the Groq provider: "llama-3.1-70b-versatile" and "llama-3.1-8b-instant". These additions enhance the versatility and instant processing capabilities of the Groq model offerings.
  • Loading branch information
qianlifeng committed Jul 25, 2024
1 parent 70650a0 commit 8328c3f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Wox/ai/provider_groq.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ func (g *GroqProvider) ChatStream(ctx context.Context, model Model, conversation

func (g *GroqProvider) Models(ctx context.Context) (models []Model, err error) {
return []Model{
{
Name: "llama-3.1-70b-versatile",
Provider: ProviderNameGroq,
},
{
Name: "llama-3.1-8b-instant",
Provider: ProviderNameGroq,
},
{
Name: "llama3-8b-8192",
Provider: ProviderNameGroq,
Expand Down

0 comments on commit 8328c3f

Please sign in to comment.