PerplexityChatGenerator
Generate chat responses using Perplexity's language models via the Perplexity Agent API.
Key Features
- Uses Perplexity's Agent API, which is compatible with the OpenAI Responses API format.
- Accepts and returns messages in
ChatMessageformat. - Supports streaming responses through a configurable callback.
- Supports tool calling for agentic workflows.
- Supports customizable generation parameters.
Configuration
- Drag the
PerplexityChatGeneratorcomponent onto the canvas from the Component Library. - Click on the component to open the configuration panel.
- On the General tab:
- Set the
modelto the Perplexity model you want to use. - Create a secret with your Perplexity API key and set it as
api_key. UsePERPLEXITY_API_KEYas the environment variable name. For instructions, see Create Secrets.
- Set the
- Go to the Advanced tab to configure
generation_kwargs,timeout, andmax_retries.
Connections
PerplexityChatGenerator receives a list of ChatMessage objects, typically from PromptBuilder or ChatPromptBuilder. It outputs a list of reply ChatMessage objects you can connect to AnswerBuilder or other downstream components.
Source Code
To check this component's source code, open chat_generator.py in the Haystack Core Integrations repository.
Usage Examples
Basic Configuration
PerplexityChatGenerator:
type: haystack_integrations.components.generators.perplexity.chat.chat_generator.PerplexityChatGenerator
init_parameters:
api_key:
type: env_var
env_vars:
- PERPLEXITY_API_KEY
strict: false
model: sonar
generation_kwargs:
max_tokens: 1024
Using the Component in a Pipeline
# haystack-pipeline
components:
prompt_builder:
type: haystack.components.builders.chat_prompt_builder.ChatPromptBuilder
init_parameters:
required_variables: "*"
template:
- role: user
content: "Answer the following question: {{ question }}"
llm:
type: haystack_integrations.components.generators.perplexity.chat.chat_generator.PerplexityChatGenerator
init_parameters:
api_key:
type: env_var
env_vars:
- PERPLEXITY_API_KEY
strict: false
model: sonar
generation_kwargs:
max_tokens: 1024
answer_builder:
type: deepset_cloud_custom_nodes.augmenters.deepset_answer_builder.DeepsetAnswerBuilder
init_parameters:
reference_pattern: acm
connections:
- sender: prompt_builder.prompt
receiver: llm.messages
- sender: llm.replies
receiver: answer_builder.replies
max_runs_per_component: 100
metadata: {}
inputs:
query:
- answer_builder.query
- prompt_builder.question
outputs:
answers: answer_builder.answers
Parameters
Inputs
| Parameter | Type | Description |
|---|---|---|
messages | List[ChatMessage] | A list of chat messages representing the conversation so far. |
Outputs
| Parameter | Type | Description |
|---|---|---|
replies | List[ChatMessage] | A list of generated reply messages from the model. |
Init Parameters
These are the parameters you can configure in Pipeline Builder:
| Parameter | Type | Default | Description |
|---|---|---|---|
api_key | Secret | Secret.from_env_var("PERPLEXITY_API_KEY") | The Perplexity API key. |
model | str | openai/gpt-5.4 | The name of the Perplexity model to use. |
api_base_url | Optional[str] | https://api.perplexity.ai/v1 | The base URL for the Perplexity API. |
streaming_callback | Optional[Callable] | None | A callback function for streaming responses. |
organization | Optional[str] | None | The organization ID to use for requests. |
generation_kwargs | Optional[Dict[str, Any]] | None | Additional generation parameters passed to the Perplexity API, such as max_tokens, temperature, and top_p. |
tools | Optional[List[Tool]] | None | A list of tools the model can use. |
timeout | Optional[float] | None | Request timeout in seconds. |
max_retries | Optional[int] | None | Maximum number of retries on API errors. |
Run Method Parameters
These are the parameters you can configure for the component's run() method. This means you can pass these parameters at query time through the API, in Playground, or when running a job. For details, see Modify Pipeline Parameters at Query Time.
| Parameter | Type | Default | Description |
|---|---|---|---|
messages | List[ChatMessage] | A list of chat messages representing the conversation. | |
streaming_callback | Optional[Callable] | None | A callback function to override the init-time streaming callback. |
generation_kwargs | Optional[Dict[str, Any]] | None | Additional generation parameters to override init-time values. |
tools | Optional[List[Tool]] | None | Tools to make available to the model. |
Related Information
Was this page helpful?