Skip to content
Snippets Groups Projects
Unverified Commit cadc09d7 authored by a4v2d4's avatar a4v2d4 Committed by GitHub
Browse files

[FEAT] Add Llama 3.2 models to Fireworks AI's LLM selection dropdown (#2384)

Add Llama 3.2 3B and 1B models to Fireworks AI LLM selection
parent 300e1417
Branches
No related tags found
No related merge requests found
const MODELS = { const MODELS = {
"accounts/fireworks/models/llama-v3p2-3b-instruct": {
id: "accounts/fireworks/models/llama-v3p2-3b-instruct",
organization: "Meta",
name: "Llama 3.2 3B Instruct",
maxLength: 131072,
},
"accounts/fireworks/models/llama-v3p2-1b-instruct": {
id: "accounts/fireworks/models/llama-v3p2-1b-instruct",
organization: "Meta",
name: "Llama 3.2 1B Instruct",
maxLength: 131072,
},
"accounts/fireworks/models/llama-v3p1-405b-instruct": { "accounts/fireworks/models/llama-v3p1-405b-instruct": {
id: "accounts/fireworks/models/llama-v3p1-405b-instruct", id: "accounts/fireworks/models/llama-v3p1-405b-instruct",
organization: "Meta", organization: "Meta",
......
| Organization | Model Name | Model String for API | Context length | | Organization | Model Name | Model String for API | Context length |
|--------------|------------|----------------------|----------------| |--------------|------------|----------------------|----------------|
| Meta | Llama 3.2 3B Instruct | accounts/fireworks/models/llama-v3p2-3b-instruct | 131072 |
| Meta | Llama 3.2 1B Instruct | accounts/fireworks/models/llama-v3p2-1b-instruct | 131072 |
| Meta | Llama 3.1 405B Instruct | accounts/fireworks/models/llama-v3p1-405b-instruct | 131072 | | Meta | Llama 3.1 405B Instruct | accounts/fireworks/models/llama-v3p1-405b-instruct | 131072 |
| Meta | Llama 3.1 70B Instruct | accounts/fireworks/models/llama-v3p1-70b-instruct | 131072 | | Meta | Llama 3.1 70B Instruct | accounts/fireworks/models/llama-v3p1-70b-instruct | 131072 |
| Meta | Llama 3.1 8B Instruct | accounts/fireworks/models/llama-v3p1-8b-instruct | 131072 | | Meta | Llama 3.1 8B Instruct | accounts/fireworks/models/llama-v3p1-8b-instruct | 131072 |
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
// Update the date below if you run this again because Fireworks AI added new models. // Update the date below if you run this again because Fireworks AI added new models.
// Last Collected: Sep 15, 2024 // Last Collected: Sep 27, 2024
// NOTE: Only managed to collect 18 out of ~100 models! // NOTE: Only managed to collect 20 out of ~100 models!
// https://fireworks.ai/models lists almost 100 chat language models. // https://fireworks.ai/models lists almost 100 chat language models.
// If you want to add models, please manually add them to chat_models.txt... // If you want to add models, please manually add them to chat_models.txt...
// ... I tried to write a script to grab them all but gave up after a few hours... // ... I tried to write a script to grab them all but gave up after a few hours...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment