Skip to content
Snippets Groups Projects
Unverified Commit 5df6b5f7 authored by Timothy Carambat's avatar Timothy Carambat Committed by GitHub
Browse files

Bump perplexity models (#1905)


* Added Supported Models Free Tier - chat_models.txt

Need to fill in correct Parameter Count.

* Bump perplexity model
closes #1901
closes #1900

---------

Co-authored-by: default avatarTim-Hoekstra <135951177+Tim-Hoekstra@users.noreply.github.com>
parent 61abb376
No related branches found
No related tags found
No related merge requests found
const MODELS = { const MODELS = {
"sonar-small-chat": { "llama-3-sonar-small-32k-online\\*": {
id: "sonar-small-chat", id: "llama-3-sonar-small-32k-online\\*",
name: "sonar-small-chat", name: "llama-3-sonar-small-32k-online\\*",
maxLength: 16384, maxLength: 28000,
}, },
"sonar-small-online": { "llama-3-sonar-small-32k-chat": {
id: "sonar-small-online", id: "llama-3-sonar-small-32k-chat",
name: "sonar-small-online", name: "llama-3-sonar-small-32k-chat",
maxLength: 12000, maxLength: 32768,
}, },
"sonar-medium-chat": { "llama-3-sonar-large-32k-online\\*": {
id: "sonar-medium-chat", id: "llama-3-sonar-large-32k-online\\*",
name: "sonar-medium-chat", name: "llama-3-sonar-large-32k-online\\*",
maxLength: 16384, maxLength: 28000,
}, },
"sonar-medium-online": { "llama-3-sonar-large-32k-chat": {
id: "sonar-medium-online", id: "llama-3-sonar-large-32k-chat",
name: "sonar-medium-online", name: "llama-3-sonar-large-32k-chat",
maxLength: 12000, maxLength: 32768,
}, },
"llama-3-8b-instruct": { "llama-3-8b-instruct": {
id: "llama-3-8b-instruct", id: "llama-3-8b-instruct",
...@@ -29,26 +29,11 @@ const MODELS = { ...@@ -29,26 +29,11 @@ const MODELS = {
name: "llama-3-70b-instruct", name: "llama-3-70b-instruct",
maxLength: 8192, maxLength: 8192,
}, },
"codellama-70b-instruct": {
id: "codellama-70b-instruct",
name: "codellama-70b-instruct",
maxLength: 16384,
},
"mistral-7b-instruct": {
id: "mistral-7b-instruct",
name: "mistral-7b-instruct",
maxLength: 16384,
},
"mixtral-8x7b-instruct": { "mixtral-8x7b-instruct": {
id: "mixtral-8x7b-instruct", id: "mixtral-8x7b-instruct",
name: "mixtral-8x7b-instruct", name: "mixtral-8x7b-instruct",
maxLength: 16384, maxLength: 16384,
}, },
"mixtral-8x22b-instruct": {
id: "mixtral-8x22b-instruct",
name: "mixtral-8x22b-instruct",
maxLength: 16384,
},
}; };
module.exports.MODELS = MODELS; module.exports.MODELS = MODELS;
| Model | Parameter Count | Context Length | Model Type | | Model | Parameter Count | Context Length | Model Type |
| :-------------------- | :-------------- | :------------- | :-------------- | | :--------------------------------- | :-------------- | :------------- | :-------------- |
| `sonar-small-chat` | 7B | 16384 | Chat Completion | | `llama-3-sonar-small-32k-online`\* | 8B | 28,000 | Chat Completion |
| `sonar-small-online` | 7B | 12000 | Chat Completion | | `llama-3-sonar-small-32k-chat` | 8B | 32,768 | Chat Completion |
| `sonar-medium-chat` | 8x7B | 16384 | Chat Completion | | `llama-3-sonar-large-32k-online`\* | 70B | 28,000 | Chat Completion |
| `sonar-medium-online` | 8x7B | 12000 | Chat Completion | | `llama-3-sonar-large-32k-chat` | 70B | 32,768 | Chat Completion |
| `llama-3-8b-instruct` | 8B | 8192 | Chat Completion | | `llama-3-8b-instruct` | 8B | 8,192 | Chat Completion |
| `llama-3-70b-instruct` | 70B | 8192 | Chat Completion | | `llama-3-70b-instruct` | 70B | 8,192 | Chat Completion |
| `codellama-70b-instruct` | 70B | 16384 | Chat Completion | | `mixtral-8x7b-instruct` | 8x7B | 16,384 | Chat Completion |
| `mistral-7b-instruct` [1] | 7B | 16384 | Chat Completion | \ No newline at end of file
| `mixtral-8x7b-instruct` | 8x7B | 16384 | Chat Completion |
| `mixtral-8x22b-instruct` | 8x22B | 16384 | Chat Completion |
\ No newline at end of file
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
// copy outputs into the export in ../models.js // copy outputs into the export in ../models.js
// Update the date below if you run this again because Perplexity added new models. // Update the date below if you run this again because Perplexity added new models.
// Last Collected: Apr 25, 2024 // Last Collected: Jul 19, 2024
import fs from "fs"; import fs from "fs";
...@@ -23,7 +23,7 @@ function parseChatModels() { ...@@ -23,7 +23,7 @@ function parseChatModels() {
.slice(1, -1) .slice(1, -1)
.map((text) => text.trim()); .map((text) => text.trim());
model = model.replace(/`|\s*\[\d+\]\s*/g, ""); model = model.replace(/`|\s*\[\d+\]\s*/g, "");
const maxLength = Number(contextLength.replace(/\s*\[\d+\]\s*/g, "")); const maxLength = Number(contextLength.replace(/[^\d]/g, ""));
if (model && maxLength) { if (model && maxLength) {
models[model] = { models[model] = {
id: model, id: model,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment