Perplexity's top tier — when the answer engine is your main tool
7 lessons2026-08-06AI-generated
1Overview
The highest Perplexity subscription tier, for people whose research runs through an answer engine all day: the largest allowances for the heavier research and agent modes, priority access to new features, and the fewest limits on long multi-step investigations. → Reach for it only after the normal tier has actually become the constraint — the chapter on Perplexity itself teaches the tool, and most readers never hit the ceiling. → What you are buying is headroom, not a different product; if the deciding factor is EU hosting or company rollout, Langdock above is the more relevant chapter.
Not written yet — this chapter is a placeholder for Perplexity Max, one of the all-in-one AI platforms. Research and copy still to come.
1.1When should I upgrade to Perplexity Max?
Upgrade only after the standard tier’s limits start hindering your workflow—once you need extra allowance for heavy research, agent modes, or priority feature access.
1.2Is Perplexity Max a different product?
No; it’s the same answer engine with expanded capacity—think of it as buying extra bandwidth rather than a separate tool, unless EU hosting or company rollout specifics matter.
2Lessons 7
2.1Configure Perplexity to use a consistent tone
A saved instruction set that automatically shapes all future Perplexity responses.
Configure Perplexity so every new conversation follows the tone and style you define
Open Perplexity and select the Profile tab
Enter your desired instructions in the self‑introduction field
Click the Save button to store the instruction set
Begin a new conversation to confirm the AI uses the saved tone
You'll see All subsequent answers reflect the tone you specified, confirming the profile is applied automatically
Takeaway Persisting custom instructions removes repetitive prompt engineering and ensures consistent output across sessions
Check How can you verify that Perplexity is applying your saved instruction set to new conversations?
2.2Install the Perplexity SDK and configure your API key
The official Python SDK that lets you call Perplexity APIs from code.
You will be able to run Python scripts that authenticate with Perplexity’s services.
Open a terminal and run pip install perplexityai.
Create a new file named config.py.
Add the line import os followed by os.environ["PERPLEXITY_API_KEY"] = "your_api_key_here" replacing the placeholder with your real key.
Save the file and run python -c "import config; print('API key set')" to verify no errors appear.
You'll see The script prints “API key set” without raising an exception, confirming the SDK is installed and the environment variable is recognized.
Takeaway Setting the API key as an environment variable lets all Perplexity SDK calls authenticate automatically.
2.3Set up a weekly AI news briefing
A recurring Perplexity task that runs a research query on schedule and emails you a PDF summary.
Create a hands‑free workflow that delivers a weekly AI news briefing to your inbox
Run a query such as “Summarise the top AI news of the past week in a PDF.”
Click the three‑dot menu on the result pane and choose Create task
In the task editor, set Frequency to weekly, select the desired day and time, and pick Email as the delivery method
Press Save and verify the new task appears in your tasks list with the correct schedule
You'll see Each week at the chosen time you receive an email containing a PDF with the latest AI news summary
Takeaway Scheduling queries turns Perplexity into a personal monitoring service, freeing you from manual repeat searches
Check What settings must you configure in the task editor to ensure the weekly briefing is emailed as a PDF?
2.4Run a real‑time web search with the Search API
Perplexity’s Search API returns ranked web results as structured JSON.
You will retrieve and display five current web results for a query of your choice.
Create a file search.py and import the SDK with from perplexity import Perplexity.
Instantiate a client: client = Perplexity().
Call the search endpoint:
``python
search = client.search.create(
query="latest AI research trends",
max_results=5,
search_context_size="high"
)
``
Iterate over search.results and print each result’s title and URL.
Run the script with python search.py.
You'll see Five lines printed, each showing a result title followed by its URL, confirming the API returned live web data.
Takeaway The Search API gives you raw, ranked results that you can pipe into further processing or analysis.
2.5Create an interactive AI‑tool comparison dashboard
A live web page with charts and filters that lets users explore side‑by‑side comparisons of AI products.
Generate, host and access a live dashboard that lets you explore AI tools without writing code
Start a new chat and type a prompt such as “Create an interactive dashboard comparing AI tools A, B, and C with charts for price, performance, and user ratings.”
When the response includes a link, click the provided hyperlink to open the live dashboard page
Adjust the filter controls on the dashboard to change which tool data is displayed
Select different chart types from the dropdown menu to view alternative visualisations
Copy the shareable URL from the address bar and paste it into a new browser tab to confirm the page loads for anyone with the link
You'll see A web page showing comparative charts with filter controls that update instantly
Takeaway Perplexity’s Computer mode can turn prompts into data‑driven interfaces for rapid validation
Check Which actions on the dashboard allow you to customise the displayed comparison data and visualisation type?
2.6Generate a citation‑rich answer using an Agent preset
Perplexity’s AgentAPI preset “low” which bundles a model, search config, and tool usage for everyday research.
You will receive a summarized answer with inline citations for a multi‑step question.
Create a file agent_low.py and import the SDK as before.
Instantiate the client: client = Perplexity().
Send a request using the low preset:
``python
response = client.responses.create(
preset="low",
input="Summarize the core findings of the original 'Attention Is All You Need' transformer paper and explain why it changed NLP."
)
print(response.output_text)
``
Run the script with python agent_low.py.
Observe the printed text for bracketed citations such as [web:1].
You'll see A concise paragraph that ends with inline citations like [web:1], showing the preset performed web‑grounded reasoning.
Takeaway Presets let you get high‑quality, citation‑backed answers without manually configuring models or tools.
2.7Analyze an image by sending it as base64 data
The Sonar API’s media endpoint that accepts a base64‑encoded image and returns a textual description.
You will encode a local PNG, send it to the API, and receive a descriptive response.
Place an image file sample.png in your working directory.
Create a file image_analysis.py and add:
``python
import base64, os
from perplexity import Perplexity
client = Perplexity()
with open("sample.png", "rb") as f:
b64 = base64.b64encode(f.read()).decode("utf-8")
image_uri = f"data:image/png;base64,{b64}"
completion = client.chat.completions.create(
model="sonar-pro",
messages=[{
"role": "user",
"content": [
{"type": "text", "text": "Can you describe this image?"},
{"type": "image_url", "image_url": {"url": image_uri}}
]
}]
)
print(completion.choices[0].message.content)
``
Run the script with python image_analysis.py.
Read the printed description of the image.
You'll see A paragraph describing the visual content of sample.png, confirming the API successfully processed the base64 image.
Takeaway Base64 encoding lets you feed local media into Perplexity’s models for analysis without needing a public URL.
3You’ll know it worked 67 checkable outcomes in this chapter
✓The final deliverable (e.g., report or app) appears in the interface ready for download
✓You receive a notification when the scheduled query finishes and can view results in the Tasks list
✓Run the skill on a new paper title and check that the abstract follows the saved structure with citations
✓The response lists source URLs and shows the “steps” it took to reach the answer
✓Opening the file shows the same content as on Perplexity with proper formatting
✓The model name displayed in the UI matches your selection and output style reflects its characteristics
✓The response notes it was generated via Model Council or shows combined citations from different models
✓The AI returns a downloadable GIF file that animates the price chart
67 outcomes in all — one per recipe below.
4FAQ, Tips & How-to 67
one problem, one solution, one action
!TipEveryone
Perplexity Computer — orchestrate multiple AI models for a project
Perplexity Computer breaks a user‑defined outcome into sub‑tasks and automatically assigns each to the most suitable model from its 19‑model pool, running them in parallel. This coordination lets you get research, code, design, and visuals without switching tools.
Outcome‑Focused Prompting — get better results from Perplexity Computer
Instead of listing step‑by‑step instructions, describe the desired final product and its format; the system figures out the how. Specific deliverable details (PDF, dashboard, charts) guide model selection and output quality.
Research Report Prompt — generate a comprehensive PDF report automatically
By asking Perplexity Computer to research a topic and create a structured report with sections, key findings, and citations, it runs parallel research agents and compiles the output into a downloadable PDF.
Interactive Dashboard Prompt — build a web‑based comparison tool without coding
Specify that you want an interactive dashboard comparing AI tools, including charts and recommendations, and Perplexity Computer will route tasks to research, UI design, and web‑app models, delivering a live page you can share.
When you request a simple web app for tracking subscriptions with inputs, totals, projections, and pie charts, Perplexity Computer generates the code, hosts it, and provides a responsive interface ready to use.
Weekly AI News Briefing Prompt — automate recurring research deliveries
By defining a weekly schedule, source criteria, and output format, Perplexity Computer sets up an autonomous agent that scans new content, summarizes top stories, and delivers a PDF each Monday.
Need answers only from a certain site or date range
Perplexity supports Google‑style operators like site: and after:. By appending these to your query you limit the search to a particular domain or time range, ensuring more relevant and up‑to‑date answers.
Typing '/' opens a menu where you can save custom prompts as shortcuts. These shortcuts auto‑populate the query box with predefined instructions, saving time on repetitive tasks.
Perplexity Pro lets you schedule a query to run automatically at set intervals. This creates a hands‑free workflow for regular research or monitoring tasks.
Spaces act like private workspaces where you can upload documents, add URLs, and set source toggles. Queries inside a space draw only from its contents (and any enabled sources), letting you ground answers in your own data.
Perplexity Pro lets you choose between models like Claude, Gemini, GPT, or the default ‘best’. Different models excel at research, writing, multimodal input, or logical reasoning; swapping them tailors output quality to the job.
Need a quick fact, an in‑depth report, or a generated spreadsheet
Perplexity offers three modes: Search (fast fact‑finding), Research (multi‑step deep dive with many sources), and Labs (AI agents that generate documents, spreadsheets, etc.). Selecting the right mode balances speed versus thoroughness.
By adding Perplexity as a custom search engine in Chrome (or any Chromium browser) and setting it as default, you can invoke AI‑powered answers directly from the address bar, streamlining access.
Turning off AI data retention prevents Perplexity from storing the content you input, which safeguards sensitive results before publication. This setting gives researchers confidence that their proprietary data stays private.
Customizing the occupation, field, and response style tells Perplexity to answer as a specialist, yielding more academic tone, synthesis first, then evidence, then gaps. This improves relevance for research queries.
Keeping literature‑review prompts, PDFs and guidelines together
Spaces act like dedicated workspaces where you can store prompts, uploaded PDFs, guidelines, and custom instructions for a single research task, eliminating repetitive file uploads.
Skills capture a sequence of prompts and formatting rules that can be invoked repeatedly, ensuring consistent output for tasks such as drafting abstracts or tables.
Connectors link Perplexity to external repositories, ensuring that search results draw directly from trusted sources like Wiley journals or your own stored documents on Google Drive.
The “Computer” feature runs multi‑step, parallel agents that gather sources, synthesize findings, and output a formatted draft, speeding up early‑stage review work.
Want the AI to keep your preferred tone in every chat
The profile tab lets you add custom instructions that apply to every conversation, similar to ChatGPT's custom instructions. This ensures the AI consistently follows your preferred tone, style, or role without re‑entering prompts each time.
Want answers only from academic papers or news feeds
Focus lets you restrict which categories of sources (e.g., academic, news, social) Perplexity searches, improving relevance and trustworthiness for specific queries like scientific data or real‑time news.
Want the same AI role and past answers in every new chat
Collections store a series of related threads plus an overarching instruction (e.g., “act as a travel agent”). New conversations within that collection inherit the role and can reference prior answers, streamlining multi‑step projects.
Free users can attach PDF files (including converted images) so Perplexity can cite information directly from those documents, enabling Q&A on private or offline content.
Pro users get up to 600 searches per day and a richer set of sources, resulting in more detailed answers. This is useful for heavy research tasks where the free five‑search limit would be restrictive.
Need a detailed answer that shows reasoning and cites sources
Perplexity’s search lets you choose models and source filters (e.g., web, social, finance). By selecting the appropriate model and enabling opinion sources, the AI pulls from many cited sites and shows its reasoning steps, giving more accurate, nuanced results than plain chat.
The Deep Research button runs a timed search that gathers dozens of sources, creates a structured report, and can email you when finished. It’s ideal for thorough investigations with minimal hallucinations.
Perplexity’s ‘Convert to Page’ feature formats research output with sections, images, and styling, then lets you edit, preview, and publish a shareable link.
Spaces act like custom GPTs: you give a system prompt, name the space, and it retains context across sessions, perfect for recurring workflows such as trip planning or stock screening.
Perplexity’s Task feature lets you set a recurring query, choose model and sources, and define delivery method (email or WhatsApp). It runs automatically at the chosen time.
By linking your WhatsApp number, Perplexity can send you task results or answer queries directly in the messaging app, keeping interactions private and mobile‑friendly.
Comet, Perplexity’s AI‑native browser, can watch a video page and, using the side assistant, summarize content and locate specific moments, saving time on long media.
Using the Perplexity API key, you can call the intelligent search endpoint from tools like n8n or Zapier to automate research, summarization, and downstream actions (e.g., email podcast).
In the account settings you can edit the 'Introduce yourself' prompt to define tone, reasoning style, and accuracy preferences. This guides the model to prioritize first‑principles reasoning and ask clarifying questions, reducing hallucinations.
Need a deep research report with tables and sources
Switching the search mode to 'Deep research' tells Perplexity to compile an in‑depth report, pulling from multiple sources and structuring key takeaways, tables, and citations automatically.
Perplexity lets you create a task that runs on a chosen cadence, using any prompt you define. You can set delivery method (email, notification) and expiration date, turning the AI into a personal monitoring service.
You can toggle source types such as Web, Academic papers, Social media, or SEC filings. Restricting sources improves relevance for specific domains and reduces unwanted noise.
The Labs feature accepts a prompt describing desired visualizations, style, and data source. Perplexity builds an interactive dashboard that updates when you modify filters or remove outliers.
Spaces act like shared workspaces where threads, files, and instructions are stored. You can invite others via a link, allowing real‑time collaboration on itineraries, research, or any project.
Connectors let you link Gmail, Outlook, Google Drive, Dropbox, or WhatsApp so that queries can fetch live emails, documents, or messages without leaving the platform.
Perplexity allows you to pick a model per query (Sonar, GPT‑4, Claude, etc.). Selecting a specialized model can improve accuracy for niche domains or reduce cost.
After a conversation, you can convert the entire thread into a formatted page with sections, images, and citations. The page can be published via a link for easy sharing.
The platform includes a microphone icon that enables voice input and reads responses aloud, allowing hands‑free queries and accessibility for users who prefer speaking.
Perplexity automatically searches the web for each query and attaches clickable citations to every fact, letting you verify information instantly. This reduces hallucinations compared to static LLMs.
Computer mode treats your request as an AI agent workflow, breaking it into sub‑tasks, selecting optimal models for each step, and assembling slides automatically.
Connectors let Perplexity access APIs of platforms such as Google Drive, Notion, YouTube Analytics, etc., so AI can read and act on your personal data securely.
Want to keep chats, files and prompts together for repeated work
Spaces act like folders that store related chats, files, and custom prompts, enabling you to reuse instructions across repeated tasks without re‑typing.
The scheduled search feature lets you define a query (or deep‑research/computer workflow) to run at set intervals, delivering results via notification or email.
When enabled, Perplexity sends your question to several top‑tier models, aggregates their responses, and returns a refined answer that reduces single‑model bias.
This mode breaks down a difficult concept into incremental steps, asks you to confirm understanding after each, effectively acting as an interactive tutor.
All files produced by Perplexity (reports, spreadsheets, presentations) are saved in the Artifacts tab, making it easy to retrieve past results without searching chat history.
Need a repeatable way to run the same computer steps
Skills are reusable instruction sets that tell Computer mode how to handle specific types of work (e.g., formatting reports), letting you standardize workflows across projects.
Want the AI to access Google Drive or Notion without API keys
Connectors let the AI agent access your Google Drive, OneDrive, Notion, etc., so it can read/write files, send emails, and manipulate data without manual API keys. The built‑in integrations simplify setup and expand automation possibilities.
Shared Memory in Perplexity Computer — persist context across sessions
The platform stores bio facts, preferences, projects and past conversations in shared memory, allowing later prompts to recall earlier research without re‑entering data. This reduces repetition for long‑term workflows.
Credit Usage Monitoring — track cost of each AI task
The usage panel shows how many credits each operation (text, image, video) consumes, letting you budget against your monthly allowance and avoid surprise overruns.
Perplexity Computer can fetch historical price data via public APIs, plot it frame‑by‑frame and export an animated GIF, all from a single natural‑language request.
By specifying a public APIendpoint, Perplexity Computer can write code that pulls live vessel data, visualizes it on an interactive map, and hosts the app—all without manual coding.
Split your query into three parts—Goal (what you want), Inputs (data sources to use), and Constraints (limits like time range). This forces the model to focus on what matters, yielding more accurate and useful responses.
Different models excel at different tasks: Claude for writing/research, ChatGPT for multi‑step reasoning and coding, Gemini for broad research, Sonar for fast fact retrieval. Picking the right model boosts accuracy and speed.
Spaces let you upload private data and set custom instructions, giving Perplexity persistent knowledge about your role, goals, and assets. This turns generic answers into personalized advice.
Focus mode toggles between source categories (academic, finance, social, etc.) while connectors let Perplexity pull directly from tools like Slack, Gmail, Dropbox. This narrows results to the most relevant domain.
Activating deep research tells Perplexity to gather more sources, create charts, and perform extended reasoning, producing in‑depth analyses like market studies or product launch plans.
Perplexity’s Tasks feature lets you schedule queries (e.g., weekly stock summaries) that run automatically on a chosen cadence, delivering results via notification.
Need a report, slides or dashboard without formatting
Labs provides a suite of agents that can create structured outputs (docs, slides, dashboards) from prompts. By crafting strong prompts you can produce professional assets without manual formatting.
The most tangible look at Comet's agentic browsing, the headline perk of Perplexity's premium tiers.
6FAQ 5
How does Perplexity Computer turn one goal into a complete project without me switching tools?
You describe the final product you want, and Perplexity Computer splits that outcome into sub‑tasks. It then picks the best model from its 19‑model pool for each task and runs them in parallel, delivering research, code, design, or visuals all together.
What is outcome‑focused prompting and why should I use it?
Instead of writing step‑by‑step instructions, you state the desired final deliverable (for example a PDF report or an interactive dashboard) and its format. The system decides how to achieve that, which leads to clearer prompts and more accurate, properly formatted results.
Can Perplexity automatically send me a weekly AI news briefing?
Yes; by defining a schedule, source criteria, and output format, Perplexity sets up an autonomous agent that scans new content each week, summarizes the top stories, and delivers a PDF every Monday.
How do I make Perplexity remember my preferred tone or role for all future chats?
Open the Profile tab, enter your custom instructions in the self‑introduction field (e.g., “respond like a consultant, use simple language”), and save. Those instructions are then applied automatically to every new conversation.
How can I restrict Perplexity’s answers to only academic sources?
Use the Focus dropdown on the Home tab (or the Sources filter in the chat toolbar) and select ‘Academic’. The query will then pull information solely from academic publications, improving relevance for scholarly topics.
7Glossary 12 terms
Show the 12 terms
Perplexity Max
Perplexity Computer
A feature that breaks a user’s goal into sub‑tasks and runs the best AI model for each task in parallel.
Outcome‑Focused Prompting
Writing a prompt that describes the desired final product instead of step‑by‑step instructions, letting the system decide how to achieve it.
Perplexity Profile
A saved set of custom instructions that automatically apply to every new conversation you start.
Focus Feature
An option that limits searches to a chosen source category such as Academic, News, Social or Web for more relevant answers.
Collections
Named groups that store related chats and an overarching role prompt so future conversations inherit the same context.
Attach PDFs
A button that lets you upload PDF files to a chat so the AI can read and cite information from them.
Deep Research Mode
A toggle that tells Perplexity to produce an in‑depth, multi‑section report with tables and citations automatically.
Scheduled Tasks
A setting that creates a recurring query you define, delivering results at chosen intervals via email or notification.
Spaces Collaboration
Shared workspaces where multiple users can add chats, files, and prompts to co‑author projects in real time.
Connectors
Integrations that link external services like Gmail or Google Drive so the AI can fetch or write data directly from them.
Model Selection
A dropdown that lets you choose which underlying language model (e.g., GPT‑4, Claude) will answer a specific query.
Voice & Dictation
A microphone icon that records spoken questions and can read answers aloud for hands‑free interaction.