diff --git a/fern/changelog/2024-11-24.mdx b/fern/changelog/2024-11-24.mdx
new file mode 100644
index 0000000..0a24c5a
--- /dev/null
+++ b/fern/changelog/2024-11-24.mdx
@@ -0,0 +1,13 @@
+1. **Voice Fallback Plan Introduced**: You can now enhance your assistant's reliability by defining fallback voice providers using `assistant.voice.fallbackPlan.voices`. This allows your assistant to switch to alternative voices or providers like `FallbackLMNTVoice`, `FallbackAzureVoice`, `FallbackNeetsVoice`, `FallbackTavusVoice`, `FallbackOpenAIVoice`, and others if the primary voice provider fails.
+
+
+
+
+
+2. **Language Selection for PlayHTVoice**: The `language` property has been added to `PlayHTVoice`. You can now specify the desired language for speech synthesis using `assistant.voice.language`.
+
+3. **AssemblyAI Transcriber Available**: You can now use AssemblyAI for transcribing by setting `Assistant.transcriber` to `AssemblyAITranscriber`. This provides a new option for converting speech to text in your assistant.
+
+4. **Updated OpenAI Model Support**: The `gpt-4o-2024-11-20` model has been added to `OpenAIModel.model` and `OpenAIModel.fallbackModels`. You can now configure your assistant to use this latest OpenAI model.
+
+5. **Removal of 'fillerInjectionEnabled' Property**: The `fillerInjectionEnabled` property has been removed from voice configurations like `LMNTVoice`, `AzureVoice`, etc. You no longer need to include this property when configuring these voices.
diff --git a/fern/changelog/2024-11-25.mdx b/fern/changelog/2024-11-25.mdx
new file mode 100644
index 0000000..d79918e
--- /dev/null
+++ b/fern/changelog/2024-11-25.mdx
@@ -0,0 +1,6 @@
+1. **No length limit for assistant's first message**: You can now set `assistant.firstMessage` or `call.assistant.firstMessage` to any length; the previous maximum length restriction has been removed. This allows you to provide longer initial messages for the assistant's greeting.
+
+
+
+
+
diff --git a/fern/static/images/changelog/fallback-plan.png b/fern/static/images/changelog/fallback-plan.png
new file mode 100644
index 0000000..72e3507
Binary files /dev/null and b/fern/static/images/changelog/fallback-plan.png differ
diff --git a/fern/static/images/changelog/first-message.png b/fern/static/images/changelog/first-message.png
new file mode 100644
index 0000000..050d068
Binary files /dev/null and b/fern/static/images/changelog/first-message.png differ