Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs-website/docs/pipeline-components/generators.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Generators are responsible for generating text after you give them a prompt. The
| [LlamaCppChatGenerator](generators/llamacppchatgenerator.mdx) | Enables chat completion using an LLM running on Llama.cpp. | ✅ |
| [LlamaCppGenerator](generators/llamacppgenerator.mdx) | Generate text using an LLM running with Llama.cpp. | ❌ |
| [LlamaStackChatGenerator](generators/llamastackchatgenerator.mdx) | Enables chat completions using an LLM model made available via Llama Stack server | ✅ |
| [MetaLlamaChatGenerator](generators/metallamachatgenerator.mdx) | Enables chat completion with any model hosted available with Meta Llama API. | ✅ |
| [MetaLlamaChatGenerator](generators/metallamachatgenerator.mdx) | Archived because Meta shut down the public preview Llama API on July 6, 2026. See the component page for supported alternatives. | ✅ |
| [MistralChatGenerator](generators/mistralchatgenerator.mdx) | Enables chat completion using Mistral's text generation models. | ✅ |
| [MockChatGenerator](generators/mockchatgenerator.mdx) | Returns predefined responses without calling any API — a deterministic, zero-cost stand-in for real Chat Generators in tests and prototypes. | ✅ |
| [NvidiaChatGenerator](generators/nvidiachatgenerator.mdx) | Enables chat completion using Nvidia-hosted models. | ✅ |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ description: "This component enables chat completion with any model hosted avail

This component enables chat completion with any model hosted available with Meta Llama API.

:::warning[Discontinued Integration]

Meta shut down the public preview Llama API on July 6, 2026. As a result, the `meta-llama-haystack` integration is archived and no longer functions.

To keep using Llama models, switch to another supported integration, such as [LlamaStackChatGenerator](llamastackchatgenerator.mdx), [LlamaCppChatGenerator](llamacppchatgenerator.mdx), [OllamaChatGenerator](ollamachatgenerator.mdx), or [OpenRouterChatGenerator](openrouterchatgenerator.mdx).
:::

<div className="key-value-table">

| | |
Expand All @@ -18,7 +25,7 @@ This component enables chat completion with any model hosted available with Meta
| **Mandatory run variables** | `messages`: A list of [ChatMessage](../../concepts/data-classes/chatmessage.mdx) objects |
| **Output variables** | `replies`: A list of [ChatMessage](../../concepts/data-classes/chatmessage.mdx) objects |
| **API reference** | [Meta Llama API](/reference/integrations-meta-llama) |
| **GitHub link** | https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/meta_llama |
| **GitHub link** | https://github.com/deepset-ai/haystack-core-integrations/tree/a5907d1e451b499d065e066ab67b960ab9fa6dc4/integrations/meta_llama |
| **Package name** | `meta-llama-haystack` |

</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Generators are responsible for generating text after you give them a prompt. The
| [LlamaCppChatGenerator](generators/llamacppchatgenerator.mdx) | Enables chat completion using an LLM running on Llama.cpp. | ✅ |
| [LlamaCppGenerator](generators/llamacppgenerator.mdx) | Generate text using an LLM running with Llama.cpp. | ❌ |
| [LlamaStackChatGenerator](generators/llamastackchatgenerator.mdx) | Enables chat completions using an LLM model made available via Llama Stack server | ✅ |
| [MetaLlamaChatGenerator](generators/metallamachatgenerator.mdx) | Enables chat completion with any model hosted available with Meta Llama API. | ✅ |
| [MetaLlamaChatGenerator](generators/metallamachatgenerator.mdx) | Archived because Meta shut down the public preview Llama API on July 6, 2026. See the component page for supported alternatives. | ✅ |
| [MistralChatGenerator](generators/mistralchatgenerator.mdx) | Enables chat completion using Mistral's text generation models. | ✅ |
| [MockChatGenerator](generators/mockchatgenerator.mdx) | Returns predefined responses without calling any API — a deterministic, zero-cost stand-in for real Chat Generators in tests and prototypes. | ✅ |
| [NvidiaChatGenerator](generators/nvidiachatgenerator.mdx) | Enables chat completion using Nvidia-hosted models. | ✅ |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ description: "This component enables chat completion with any model hosted avail

This component enables chat completion with any model hosted available with Meta Llama API.

:::warning[Discontinued Integration]

Meta shut down the public preview Llama API on July 6, 2026. As a result, the `meta-llama-haystack` integration is archived and no longer functions.

To keep using Llama models, switch to another supported integration, such as [LlamaStackChatGenerator](llamastackchatgenerator.mdx), [LlamaCppChatGenerator](llamacppchatgenerator.mdx), [OllamaChatGenerator](ollamachatgenerator.mdx), or [OpenRouterChatGenerator](openrouterchatgenerator.mdx).
:::

<div className="key-value-table">

| | |
Expand All @@ -18,7 +25,7 @@ This component enables chat completion with any model hosted available with Meta
| **Mandatory run variables** | `messages`: A list of [ChatMessage](../../concepts/data-classes/chatmessage.mdx) objects |
| **Output variables** | `replies`: A list of [ChatMessage](../../concepts/data-classes/chatmessage.mdx) objects |
| **API reference** | [Meta Llama API](/reference/integrations-meta-llama) |
| **GitHub link** | https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/meta_llama |
| **GitHub link** | https://github.com/deepset-ai/haystack-core-integrations/tree/a5907d1e451b499d065e066ab67b960ab9fa6dc4/integrations/meta_llama |
| **Package name** | `meta-llama-haystack` |

</div>
Expand Down