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

# AI Tutor

> Contextual AI teaching assistant that helps you learn within courses — coming soon.

export const RelatedPages = ({pages = []}) => {
  if (pages.length === 0) return null;
  return <>
      <br />
      <strong>Related articles</strong>
      <CardGroup cols={2}>
        {pages.map(page => <Card title={page.title} href={page.href} key={page.href} />)}
      </CardGroup>
    </>;
};

export const FeatureAvailability = ({module, feature}) => {
  const label = feature || module;
  return <Info title="Feature availability">
      {label ? <>This feature requires the <strong>{label}</strong> module. </> : <>This feature may not be enabled for your organization. </>}
      If you don't see it in Juno, contact your administrator.
    </Info>;
};

<FeatureAvailability feature="AI Features" />

## What is the AI Tutor?

The **AI Tutor** is a contextual teaching assistant designed to help you learn while taking courses. Unlike the general Juno assistant on the home page, the AI Tutor focuses on the specific content you're currently studying.

<Warning>
  The AI Tutor is **coming soon** and not yet available in all organizations. Contact your admin for availability.
</Warning>

***

## How it will work

The AI Tutor will be available inside courses and Journeys:

* **Ask questions** about the content you're reading or watching
* **Get explanations** of concepts covered in the course material
* **Practice** with generated questions based on the course content

***

## Juno assistant vs. AI Tutor

|             | Juno assistant                                      | AI Tutor                                |
| ----------- | --------------------------------------------------- | --------------------------------------- |
| **Where**   | Home page, sidebar                                  | Inside courses                          |
| **Focus**   | General questions — goals, team, calendar, learning | Course-specific content                 |
| **Context** | Your organization's data and tools                  | The specific course/unit you're viewing |

<RelatedPages
  pages={[
{ href: "/ai-features/ai-assistant", title: "Juno Assistant" },
{ href: "/learning/courses", title: "Courses" },
]}
/>
