Skip to content

Commit

Permalink
馃拕 style: update perplexity models (lobehub#2469)
Browse files Browse the repository at this point in the history
  • Loading branch information
MapleEve committed May 14, 2024
1 parent ae6a03f commit 488cde7
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/config/modelProviders/perplexity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,35 @@ const Perplexity: ModelProviderCard = {
chatModels: [
{
displayName: 'Perplexity 7B Chat',
id: 'sonar-small-chat',
tokens: 16_384,
id: 'llama-3-sonar-small-32k-chat',
tokens: 32_768,
},
{
displayName: 'Perplexity 8x7B Chat',
displayName: 'Perplexity 70B Chat',
enabled: true,
id: 'sonar-medium-chat',
tokens: 16_384,
id: 'llama-3-sonar-large-32k-chat',
tokens: 32_768,
},
{
displayName: 'Perplexity 7B Online',
id: 'sonar-small-online',
tokens: 12_000,
id: 'llama-3-sonar-small-32k-online',
tokens: 28_000,
},
{
displayName: 'Perplexity 8x7B Online',
displayName: 'Perplexity 70B Online',
enabled: true,
id: 'sonar-medium-online',
tokens: 12_000,
id: 'llama-3-sonar-large-32k-online',
tokens: 28_000,
},
{
displayName: 'Codellama 70B Instruct',
id: 'codellama-70b-instruct',
tokens: 16_384,
displayName: 'Llama3 8B Instruct',
id: 'llama-3-8b-instruct',
tokens: 8192,
},
{
displayName: 'Mistral 7B Instruct',
id: 'mistral-7b-instruc',
tokens: 16_384,
displayName: 'Llama3 70B Instruct',
id: 'llama-3-70b-instruct',
tokens: 8192,
},
{
displayName: 'Mixtral 8x7B Instruct',
Expand Down

0 comments on commit 488cde7

Please sign in to comment.