diff --git a/server/utils/AiProviders/fireworksAi/models.js b/server/utils/AiProviders/fireworksAi/models.js
index c28f98af495279df31ab90ff6cf875c11c5589b2..2d059088199e36088ef791f3dc8b1faf3ad56295 100644
--- a/server/utils/AiProviders/fireworksAi/models.js
+++ b/server/utils/AiProviders/fireworksAi/models.js
@@ -1,4 +1,16 @@
 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": {
     id: "accounts/fireworks/models/llama-v3p1-405b-instruct",
     organization: "Meta",
diff --git a/server/utils/AiProviders/fireworksAi/scripts/chat_models.txt b/server/utils/AiProviders/fireworksAi/scripts/chat_models.txt
index a1afec9d60d2c97ab7279700cd60e135e544c90e..1b1a8360ea8562f6786e0b7d06976a6a6e64e04d 100644
--- a/server/utils/AiProviders/fireworksAi/scripts/chat_models.txt
+++ b/server/utils/AiProviders/fireworksAi/scripts/chat_models.txt
@@ -1,5 +1,7 @@
 | 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 70B Instruct | accounts/fireworks/models/llama-v3p1-70b-instruct | 131072 |
 | Meta | Llama 3.1 8B Instruct | accounts/fireworks/models/llama-v3p1-8b-instruct | 131072 |
diff --git a/server/utils/AiProviders/fireworksAi/scripts/parse.mjs b/server/utils/AiProviders/fireworksAi/scripts/parse.mjs
index 33581d1591d2d7d7d051408e4e7affa9c63efe39..7ac325df5729e6fbfca8b0bae7fbf6481cf0dcbc 100644
--- a/server/utils/AiProviders/fireworksAi/scripts/parse.mjs
+++ b/server/utils/AiProviders/fireworksAi/scripts/parse.mjs
@@ -9,8 +9,8 @@
 
 // Update the date below if you run this again because Fireworks AI added new models.
 
-// Last Collected: Sep 15, 2024
-// NOTE: Only managed to collect 18 out of ~100 models!
+// Last Collected: Sep 27, 2024
+// NOTE: Only managed to collect 20 out of ~100 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...
 // ... I tried to write a script to grab them all but gave up after a few hours...