Google AI Studio has no built-in PDF export. Use the Get Code button to export the full conversation as structured data embedded in a code snippet, then convert the extracted messages into PDF. Alternatively, scroll the prompt panel fully into view and use Ctrl+P or Cmd+P for a quick single-session print.
Short answer
Google AI Studio has no built-in PDF export. Use the Get Code button to export the full conversation as structured data embedded in a code snippet, then convert the extracted messages into PDF. Alternatively, scroll the prompt panel fully into view and use Ctrl+P or Cmd+P for a quick single-session print.
Since Google AI Studio is built for developers prototyping against the Gemini API, it has no PDF export, or any document export, built in. Getting a PDF requires either extracting content from its code-oriented export or using the browser print fallback.
Route one: extract from the Get Code export
The Get Code button above a prompt or chat panel generates a code snippet, in Python, Node.js, or REST, that includes your entire conversation history as structured data. This is the most complete capture of the actual content, since it includes every turn of a multi-turn conversation, but it's formatted as code, not a document.
To get a PDF from this:
Click Get Code and copy the generated snippet
Extract the message history, the list of role and content pairs, from the code
Convert that content into PDF using ChatExports, which turns the extracted messages into a properly formatted document with speaker labels and page breaks
This route is worth the extra step when you need the complete conversation, including all system instructions or configuration that shaped the responses, since those are also present in the code export.
Route two: browser print for a quick copy
For a fast, single-session PDF without dealing with code, scroll the chat panel so the full conversation is visible, then Ctrl+P or Cmd+P and choose Save as PDF. This captures the visual chat interface as-is, which is faster but less complete than the code-based route, and inherits the usual caveat that AI Studio, like other chat UIs, may not keep the entire history rendered until you've scrolled through it.
Why AI Studio doesn't offer PDF directly
AI Studio's target user is a developer testing prompts before writing code against the Gemini API, not someone archiving a conversation to read later. Its export tooling reflects that: the priority is making the conversation reusable programmatically, and a document format like PDF simply isn't part of that workflow, unlike consumer products such as ChatGPT or Claude that treat "save this to read later" as a core use case.
What's worth keeping alongside the PDF
If you were testing specific prompt configurations, temperature settings, safety filters, system instructions, those are included in the JSON export (where available) or the code snippet, but not necessarily in a browser-printed PDF of just the visible chat. If reproducing the exact conditions later matters, keep the raw code/JSON export alongside the readable PDF rather than treating the PDF as the complete record.
For iterative prompt engineering work
If you're going through many iterations while refining a prompt, converting each one to PDF individually gets unwieldy fast. In that case, keeping the JSON or code exports as your working record and only converting the final version(s) to PDF for sharing or documentation purposes is usually the more practical workflow.
Frequently asked questions
Is there a direct PDF export button in Google AI Studio?
No. AI Studio has no document export of any kind. Use the Get Code button to extract the conversation as structured data, then convert it, or use your browser's print-to-PDF as a quicker but less complete option.
Which method captures more of the conversation, Get Code or browser print?
Get Code, since it includes the full structured message history plus configuration details like system instructions, whereas browser print only captures what's currently rendered in the visible chat panel.
Should I keep the JSON or code export even after making a PDF?
Yes, if the exact prompt configuration (temperature, safety settings, system instructions) matters. A PDF made from the visible chat won't necessarily include those details, while the JSON or code export does.
Why doesn't Google AI Studio just have a normal export button like ChatGPT?
AI Studio is built for developers prototyping against the Gemini API, so its export tooling is aimed at reusing conversations in code rather than archiving them as readable documents.