Skip to content

Commit

Permalink
Merge pull request #630 from Portkey-AI/vrushankportkey-patch-1
Browse files Browse the repository at this point in the history
Add default models for gemini, together ai, fireworks ai
  • Loading branch information
VisargD authored Sep 27, 2024
2 parents 92a7c8d + 69fdb14 commit 7670af6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/providers/fireworks-ai/chatComplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const FireworksAIChatCompleteConfig: ProviderConfig = {
model: {
param: 'model',
required: true,
default: 'accounts/fireworks/models/llama-v3p1-405b-instruct',
},
messages: {
param: 'messages',
Expand Down
2 changes: 1 addition & 1 deletion src/providers/google/chatComplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const GoogleChatCompleteConfig: ProviderConfig = {
model: {
param: 'model',
required: true,
default: 'gemini-pro',
default: 'gemini-1.5-pro',
},
messages: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/providers/together-ai/chatComplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const TogetherAIChatCompleteConfig: ProviderConfig = {
model: {
param: 'model',
required: true,
default: 'togethercomputer/RedPajama-INCITE-Chat-3B-v1',
default: 'meta-llama/Llama-3.2-11B-Vision-Instruct-Turbo',
},
messages: {
param: 'messages',
Expand Down

0 comments on commit 7670af6

Please sign in to comment.