> ## Documentation Index
> Fetch the complete documentation index at: https://academy.pathfindr.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Reading Material

> Learn to use Gemini with your Google Workspace to build better prompts and get better results

## Use Gemini with your work

Gemini already has access to your Google Workspace. That means your emails, documents, spreadsheets, and calendar are all within reach, without uploading a single file.

The difference between a generic AI response and one that actually helps you comes down to one thing: <b>context</b>. When you give Gemini information about your specific work, it stops guessing and starts delivering results you can use straight away.

This page will show you how to:

<CardGroup cols={4}>
  <Card title="Add context with @" icon="square-1">
    Reference your existing Workspace files directly in Gemini
  </Card>

  <Card title="Structure your prompts" icon="square-2">
    Use persona, task, context, and format to get focused results
  </Card>

  <Card title="Use Gemini in your apps" icon="square-3">
    Work with Gemini inside Docs, Sheets, and Gmail
  </Card>

  <Card title="Iterate and refine" icon="square-4">
    Use follow-up prompts to improve outputs step by step
  </Card>
</CardGroup>

***

## What "context" means in Gemini

When you type a question into Gemini without any background, it responds with general information. It does not know your role, your projects, or your writing style. That is what most people experience on their first try.

"Context" is the information you give Gemini so it can respond with something relevant to <b>your</b> work, not just any work.

<CardGroup cols={2}>
  <Card title="Without context" icon="circle-xmark">
    "Write me a project update."

    Gemini produces a generic template with placeholder text. You spend 10 minutes rewriting it.
  </Card>

  <Card title="With context" icon="circle-check">
    "Write a project update for the Q1 marketing campaign @ProjectBrief.doc. Use the tone from @LastUpdate.doc and keep it under 200 words."

    Gemini pulls from your actual files and delivers a draft you can send within minutes.
  </Card>
</CardGroup>

<Tip>
  Context turns Gemini from a general search engine into a personalised assistant that knows your work.
</Tip>

***

## Reference files with the @ symbol

Gemini's standout feature is its direct connection to your Google Workspace. Type <b>@</b> in the Gemini chat and you can pull in files from Google Drive, Docs, Sheets, Slides, Gmail, and Calendar without leaving the conversation.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/geminiInBrowser.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=1ca4ecb2ca157653eebfc26904f76691" alt="Gemini In Browser Pn" width="1920" height="1080" data-path="images/geminiInBrowser.webp" />
</Frame>

This is how Gemini differs from other AI tools. Instead of downloading a file and uploading it into a separate chat window, you simply reference it by name. Gemini reads the contents and uses them to shape its response.

<CardGroup cols={3}>
  <Card title="Google Docs" icon="file-lines">
    Reference reports, briefs, proposals, or meeting notes. Ask Gemini to summarise, compare, or rewrite content based on what is in the document.
  </Card>

  <Card title="Google Sheets" icon="table">
    Pull in data from spreadsheets. Ask Gemini to find trends, explain patterns, or create summaries based on your numbers.
  </Card>

  <Card title="Gmail" icon="envelope">
    Reference email threads. Ask Gemini to summarise a conversation, draft a reply, or pull out action items from a long chain.
  </Card>
</CardGroup>

<Tip>
  You can reference multiple files in a single prompt. For example: "Compare the budget in @Q1Budget.xlsx with the forecast in @Q2Forecast.xlsx and highlight the biggest differences."
</Tip>

***

## Structure your prompts

A clear prompt leads to a useful response. When using Gemini, think of your prompt as having four parts: who Gemini should be, what you need done, what information to work from, and how to present the result.

<CardGroup cols={2}>
  <Card title="Persona" icon="user-tie">
    Tell Gemini who to act as. This shapes the tone, depth, and vocabulary of the response.

    Example: "You are a senior marketing manager."
  </Card>

  <Card title="Task" icon="list-check">
    Describe what you need. Be specific about the action you want completed.

    Example: "Summarise the key findings and recommend next steps."
  </Card>

  <Card title="Context" icon="file-circle-plus">
    Provide the background. Use @ to reference your files or paste in the relevant details.

    Example: "@Q1Report.doc @CustomerFeedback.xlsx"
  </Card>

  <Card title="Format" icon="table-columns">
    Specify how you want the output structured. This saves you from reformatting later.

    Example: "Present as a 5-bullet executive summary with a recommendation at the end."
  </Card>
</CardGroup>

### Putting it together

Here is what a structured prompt looks like in practice:

```
You are a senior marketing manager. Summarise the key findings from @Q1Report.doc
and @CustomerFeedback.xlsx. Present as a 5-bullet executive summary with a
recommendation at the end. Keep it under 200 words.
```

<Tip>
  You do not need to use all four parts every time. For quick tasks, a clear task and context may be enough. For complex outputs, include all four.
</Tip>

***

## Two ways to use Gemini

Gemini works in two places: as a standalone chat in your browser, and as an assistant built into your Google apps. Each approach serves a different purpose.

<Tabs>
  <Tab title="Gemini in your browser">
    The browser-based Gemini chat at gemini.google.com is your central hub. Type <b>@</b> to connect to your Workspace files and services. It searches, summarises, and answers questions about your existing content across sources.

    Use this when you need to work across multiple files, run Deep Research, or handle tasks that span more than one app.

    <Frame>
      <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/geminiInBrowser.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=1ca4ecb2ca157653eebfc26904f76691" alt="Gemini In Browser Pn" width="1920" height="1080" data-path="images/geminiInBrowser.webp" />
    </Frame>
  </Tab>

  <Tab title="Gemini inside your apps">
    Click "Ask Gemini" in the top navigation of Google Docs, Sheets, Slides, or Gmail to open the side panel. This version focuses on the file you are currently editing.

    Use this when you want to draft, rewrite, analyse data, or refine content without switching windows.

    <Frame>
      <img src="https://mintcdn.com/pathfindr/I3XbhzOlK6BeuXVO/images/askGemini.webp?fit=max&auto=format&n=I3XbhzOlK6BeuXVO&q=85&s=250b9687ccc87e2a186d9fafeb142021" alt="Ask Gemini Pn" width="1920" height="379" data-path="images/askGemini.webp" />
    </Frame>
  </Tab>
</Tabs>

***

## Gemini in Google Docs

Gemini inside Google Docs helps you create, edit, and refine documents without leaving the page. There are three main ways to use it.

### Generate a new document

Open a new Google Doc and use the "Generate document" feature. You can describe what you need, or reference existing files in your Drive to pull content from presentations, spreadsheets, or other documents.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/generateDocumentFeature.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=94c5427bd9154bce0093752486378e03" alt="Generate Document Feature Pn" width="1920" height="453" data-path="images/generateDocumentFeature.webp" />
</Frame>

You can also use the <b>"Help me write"</b> button to generate drafts from a short description or outline.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/generateDocumentFeature3.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=9a962a4cc2137065d378729bcb7b3bd2" alt="Generate Document Feature3 Pn" width="1920" height="1009" data-path="images/generateDocumentFeature3.webp" />
</Frame>

### Edit with Refine

Highlight any section of text and use the Refine options to shorten, elaborate, adjust tone, or make custom changes. You can also ask Gemini to add specific data or citations to a paragraph.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/editDocsWithRefine.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=204a335b6bad43b01b17e2cfab74132c" alt="Edit Docs With Refine Pn" width="1920" height="421" data-path="images/editDocsWithRefine.webp" />
</Frame>

<Warning>
  When editing through Refine, Gemini does not automatically include sources. If you need citations, add "provide the link you used" to your prompt.
</Warning>

### Export from Gemini chat to Docs

After Gemini completes a response in the browser chat, select "Share and export" then choose "Export to Docs." A new Google Doc is created with the full content, formatting, and citations included.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/exportToDocsFromGemini.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=07b22d1da52b4165a574251ca8cb5d1c" alt="Export To Docs From Gemini Pn" width="1920" height="629" data-path="images/exportToDocsFromGemini.webp" />
</Frame>

***

## Gemini in Google Sheets

### Analyse your data

When you open a spreadsheet, Gemini automatically generates a summary in the side panel. You can ask it to find trends, identify patterns, spot outliers, or compare data across columns and time periods.

<Frame>
  <img src="https://mintcdn.com/pathfindr/vxED2dxssEHZg3yn/images/sheetsDataAnalysisAndInsights.webp?fit=max&auto=format&n=vxED2dxssEHZg3yn&q=85&s=1a454c5d55f2bb902ef6ff8c76526277" alt="Sheets Data Analysis And Insights Pn" width="1920" height="894" data-path="images/sheetsDataAnalysisAndInsights.webp" />
</Frame>

### Generate formulas

Instead of remembering formula syntax, describe the calculation you need in plain language. Gemini generates the formula and references the correct data sources in your sheet.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/generateFormula.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=410dd5cf8538e893ef317f1d359e1cf9" alt="Generate Formula Pn" width="1920" height="837" data-path="images/generateFormula.webp" />
</Frame>

### The =AI function

Type =AI() in a cell to use natural language prompts within your spreadsheet. This is useful for generating text, summarising content, or categorising data across rows.

<Frame>
  <img src="https://mintcdn.com/pathfindr/I3XbhzOlK6BeuXVO/images/=aiFunction.webp?fit=max&auto=format&n=I3XbhzOlK6BeuXVO&q=85&s=8658196c49f79a42344661171e79add1" alt="=ai Function Pn" width="1920" height="741" data-path="images/=aiFunction.webp" />
</Frame>

<Warning>
  The =AI function currently does not support calculations. Use it for text-based tasks like categorisation, summarisation, and labelling.
</Warning>

### Create charts

Describe the chart you need and which data to include. Gemini creates visualisations based on your instructions.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/creatingChartsAndVisualisations.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=50ac6a6237e9eb366ae26a4f275f9bfd" alt="Creating Charts And Visualisations Pn" width="952" height="628" data-path="images/creatingChartsAndVisualisations.webp" />
</Frame>

***

## Gemini in Gmail

### Summarise email threads

For long email chains, click "Summarise this email" in the Gemini side panel. You get a concise overview of key points and action items, which is especially useful for project discussions with many replies.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/geminiSummarisingEmails.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=c736238f4477a3ec9a6a6c2238455688" alt="Gemini Summarising Emails Pn" width="1920" height="510" data-path="images/geminiSummarisingEmails.webp" />
</Frame>

### Draft and respond

Use @ to reference documents when composing emails. Gemini can pull content from your files, summarise it, and insert it directly into your draft. From there, use "Help me write" to adjust tone, length, or structure.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/draftingAndRespondingWithGemini.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=c06be7e5dfb043a6fc8497afc521175f" alt="Drafting And Responding With Gemini Pn" width="1920" height="491" data-path="images/draftingAndRespondingWithGemini.webp" />
</Frame>

<Tip>
  Gemini also offers contextual smart replies that analyse the email thread and your past communications to suggest responses matching your typical writing style.
</Tip>

***

## Iterate and refine your outputs

Your first prompt rarely produces a perfect result. The best approach is to treat the first output as a starting draft, then use follow-up prompts to refine it.

<CardGroup cols={3}>
  <Card title="Adjust the length" icon="arrows-left-right">
    "Make this shorter and focus only on the recommendations."

    "Expand the second paragraph with more detail on timelines."
  </Card>

  <Card title="Change the tone" icon="sliders">
    "Rewrite this for a senior leadership audience."

    "Make this more conversational and less formal."
  </Card>

  <Card title="Add specifics" icon="bullseye">
    "Add the revenue figures from @Q1Report.xlsx to the summary."

    "Include a comparison with last quarter's results."
  </Card>
</CardGroup>

<Tip>
  Keep the same conversation open when refining. Gemini remembers what you discussed earlier in the chat, so each follow-up builds on the previous response.
</Tip>

***

## Deep Research

Deep Research is Gemini's feature for comprehensive information gathering. It accesses and analyses hundreds of web pages, academic papers, and trusted sources to deliver structured reports with full citations. Depending on the complexity of your request, this takes between 10 and 30 minutes.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/deepResearch.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=c2cd804583dbf966c8263a7b55f3246f" alt="Deep Research Pn" width="1920" height="318" data-path="images/deepResearch.webp" />
</Frame>

### When to use Deep Research

<CardGroup cols={2}>
  <Card title="Competitor analysis" icon="chart-line">
    Gather intelligence on competitor offerings, pricing, market positioning, and customer sentiment across multiple sources.
  </Card>

  <Card title="Due diligence" icon="magnifying-glass">
    Investigate potential partners, vendors, or acquisition targets by aggregating public information, financial data, and industry analysis.
  </Card>

  <Card title="Market research" icon="chart-mixed">
    Understand industry trends, emerging technologies, or regulatory changes by pulling from trade publications, analyst reports, and news sources.
  </Card>

  <Card title="Learning new topics" icon="graduation-cap">
    Build foundational understanding of unfamiliar subjects by having Gemini curate and summarise materials from introductory through advanced levels.
  </Card>
</CardGroup>

### After research completes

A "Create" button appears in the results, letting you transform the research into different formats.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/createAdditionalFormats.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=9c804c085df350d5ce1bfff5cae0083d" alt="Create Additional Formats Pn" width="1920" height="961" data-path="images/createAdditionalFormats.webp" />
</Frame>

<AccordionGroup>
  <Accordion title="Web page" icon="globe">
    Converts the report into a shareable web page for internal knowledge bases or external publication.
  </Accordion>

  <Accordion title="Infographic" icon="chart-simple">
    Presents key findings visually with graphs and charts for presentations and stakeholder communications.
  </Accordion>

  <Accordion title="Quiz" icon="circle-question">
    Generates assessment questions based on the research, useful for training or knowledge verification.
  </Accordion>

  <Accordion title="Flashcards" icon="cards-blank">
    Creates study cards with concepts, definitions, and facts from the research for learning and retention.
  </Accordion>

  <Accordion title="Audio overview" icon="headphones">
    Produces a spoken summary of findings so you can review the research while commuting or between meetings.
  </Accordion>
</AccordionGroup>

You can also export the full report directly to Google Docs using the "Export to Docs" button, which preserves formatting, citations, and structure.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/exportToGoogleDocs.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=5b284cee7611d77eabb69993810bf07c" alt="Export To Google Docs Pn" width="1920" height="575" data-path="images/exportToGoogleDocs.webp" />
</Frame>

***

## Gems in Gemini

Gems are premade agents available within the Gemini chat interface across Google Workspace apps. They handle specific tasks like improving content, formatting text, and polishing drafts.

<Frame>
  <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/gemsInChat.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=336b4c110b98203a83f298052d9c65ea" alt="Gems In Chat Pn" width="1920" height="1080" data-path="images/gemsInChat.webp" />
</Frame>

<Tip>
  Gems appear in the side panel when you open Gemini inside apps like Google Sheets. Each Gem is tailored to common tasks for that app.
</Tip>

***

## NotebookLM

NotebookLM is a separate workspace where every response is grounded in your uploaded source material. It does not generate fabricated information. Instead, it provides direct citations linked back to your documents, making it easy to verify any claim.

<Note>
  At Pathfindr, we have integrated NotebookLM into our toolkit and found it to be a reliable resource, particularly the "Create" capabilities in the Studio tab.
</Note>

### Three main panels

<Frame>
  <img src="https://mintcdn.com/pathfindr/EcGZUsb7xx8cJToQ/images/notebooklmMainComponents.webp?fit=max&auto=format&n=EcGZUsb7xx8cJToQ&q=85&s=65512af223ad70c93f9fd7b20334b0c9" alt="Notebooklm Main Components Pn" width="1920" height="1080" data-path="images/notebooklmMainComponents.webp" />
</Frame>

<CardGroup cols={3}>
  <Card title="Sources" icon="folder-open">
    Upload documents, add web links, or connect files from Google Drive. You can attach up to 300 source files and selectively include or exclude materials before asking questions.

    <Frame>
      <img src="https://mintcdn.com/pathfindr/EcGZUsb7xx8cJToQ/images/notebooklmSources.webp?fit=max&auto=format&n=EcGZUsb7xx8cJToQ&q=85&s=97efa1a26b231ab9eaf7d046c407804a" alt="Notebooklm Sources Pn" width="1920" height="1080" data-path="images/notebooklmSources.webp" />
    </Frame>
  </Card>

  <Card title="Chat" icon="comments">
    Ask questions about your sources. Customise the AI's persona for each notebook by choosing from options like "Default" or "Learning Guide," or define a custom role and response length.

    <Frame>
      <img src="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/notebooklmChat.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=c67ca7b33d19d24989afcec18f0b4230" alt="Notebooklm Chat Pn" width="1920" height="1080" data-path="images/notebooklmChat.webp" />
    </Frame>
  </Card>

  <Card title="Studio" icon="wand-magic-sparkles">
    Transform your source materials into structured outputs with one click: Audio Overview, Video Overview, Flashcards, Quiz, Mind Maps, and Reports.

    <Frame>
      <img src="https://mintcdn.com/pathfindr/EcGZUsb7xx8cJToQ/images/notebooklmStudio.webp?fit=max&auto=format&n=EcGZUsb7xx8cJToQ&q=85&s=de37fb6fde635aac7dfe024cb4219bfd" alt="Notebooklm Studio Pn" width="1920" height="913" data-path="images/notebooklmStudio.webp" />
    </Frame>
  </Card>
</CardGroup>

<Tip>
  If you find a response useful during a chat, you can convert it into a note. This note appears in the Studio panel, where you can review it later or add it as a source for future queries.
</Tip>

***

## Quick checkpoint (you're done when...)

<CardGroup cols={4}>
  <Card title="Add context with @" icon="circle-check">
    You referenced a Workspace file in a Gemini prompt using the @ symbol
  </Card>

  <Card title="Structure prompts" icon="circle-check">
    You built a prompt using persona, task, context, and format
  </Card>

  <Card title="Use Gemini in apps" icon="circle-check">
    You opened the Gemini side panel in Docs, Sheets, or Gmail
  </Card>

  <Card title="Iterate and refine" icon="circle-check">
    You used a follow-up prompt to improve Gemini's first response
  </Card>
</CardGroup>

<div className="mt-8" />

<Card title="Ready to practice?" icon="chess-knight-piece" href="/participant/toolWithContext/challenge-2">
  Complete the mini challenge by building a prompt with context from your own Workspace files
</Card>
