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

# Meta Muse

> Give Meta Muse its own US phone number. Paste one prompt and Muse sets itself up with Brilo, makes calls for you, and answers when people call you back.

export const PromptCopy = ({prompt, label = 'Copy the prompt'}) => {
  const [state, setState] = useState('idle');
  const [open, setOpen] = useState(false);
  const id = `prompt-${String(label).toLowerCase().replace(/[^a-z0-9]+/g, '-')}`;
  const selectText = () => {
    const node = typeof document === 'undefined' ? null : document.getElementById(`${id}-text`);
    if (!node || typeof window === 'undefined') return;
    const range = document.createRange();
    range.selectNodeContents(node);
    const selection = window.getSelection();
    selection.removeAllRanges();
    selection.addRange(range);
  };
  const copy = async () => {
    try {
      await navigator.clipboard.writeText(prompt);
      setState('copied');
      setTimeout(() => setState('idle'), 2000);
    } catch (error) {
      setOpen(true);
      setState('blocked');
      setTimeout(selectText, 0);
    }
  };
  const status = state === 'copied' ? 'Copied. Now paste it into your assistant.' : state === 'blocked' ? 'Press and hold the text to copy it.' : '';
  return <div style={{
    margin: '12px 0 20px'
  }}>
      <button type="button" onClick={copy} aria-describedby={`${id}-status`} style={{
    width: '100%',
    minHeight: 48,
    border: 0,
    borderRadius: 8,
    background: '#8C7AE6',
    color: '#111',
    fontFamily: 'inherit',
    fontSize: 16,
    fontWeight: 600,
    lineHeight: 1.2,
    cursor: 'pointer'
  }}>
        {state === 'copied' ? 'Copied' : label}
      </button>
      <div id={`${id}-text`} style={{
    marginTop: 10,
    padding: '14px 16px',
    border: '1px solid rgba(127,127,127,.35)',
    borderRadius: 8,
    fontSize: 15,
    lineHeight: 1.6,
    whiteSpace: 'pre-wrap',
    maxHeight: open ? 'none' : '6.4em',
    overflow: 'hidden',
    WebkitMaskImage: open ? 'none' : 'linear-gradient(#000 55%, transparent)',
    maskImage: open ? 'none' : 'linear-gradient(#000 55%, transparent)'
  }}>
        {prompt}
      </div>
      <button type="button" onClick={() => setOpen(!open)} aria-expanded={open} style={{
    background: 'none',
    border: 0,
    padding: '8px 0',
    minHeight: 44,
    color: '#8C7AE6',
    fontFamily: 'inherit',
    fontSize: 14,
    cursor: 'pointer'
  }}>
        {open ? 'Show less' : 'Show the whole prompt'}
      </button>
      <p id={`${id}-status`} role="status" aria-live="polite" style={{
    margin: 0,
    fontSize: 14
  }}>
        {status}
      </p>
    </div>;
};

Give Meta Muse its own phone number. It calls places for you and answers when people call you back.

\$4.99 for your first month, then \$29.99 a month. Unlimited US and Canada calling within
[fair use limits](/supported/limits#assistant-phone-plan-fair-use).

## Before you start

* Meta Muse on your phone, the web or WhatsApp.
* A card to pay with on your phone.

## Paste this into Meta Muse

<PromptCopy label="Copy the Meta Muse prompt" prompt={`Set yourself up with a Brilo phone number so you can make calls for me and answer when people call back. Read https://docs.brilo.ai/personal-assistants/connect and follow it step by step. Pass my name, email and phone number if you know them. Show me the link and the code, and let me pay in my own browser. Don't pay or approve anything for me. When you get your Brilo key, save it as a Brilo connection through your secure credential prompt, never in our chat. Save a note in your memory that you can make and check phone calls for me with Brilo, as the page describes. Then tell me the new number and call me to prove it works.`} />

## What happens next

<Steps>
  <Step title="Muse sends you a link and a code">
    Open the link on your phone and check the code matches.
  </Step>

  <Step title="Sign up and pay">
    Your details are already filled in if Muse knew them. Codes last 15 minutes.
  </Step>

  <Step title="Tell Muse you're done">
    It collects its key and rings you from your new number.
  </Step>
</Steps>

## What Muse can do

| You say                               | What happens                                            |
| ------------------------------------- | ------------------------------------------------------- |
| "Call the vet and move Rex to Friday" | It calls from your number and tells you what they said. |
| "Did anyone call me today?"           | It reads your call history and tells you.               |
| Someone calls your number             | It answers and has the conversation.                    |

<Note>
  Muse follows your approval settings. If you want to confirm each call before it is made, turn on
  approval for calls in Muse.
</Note>

## If something goes wrong

| What you see                                       | What to do                                                                                                                                                                                             |
| -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Muse says it cannot make phone calls in a new chat | Tell it: "You can make calls with Brilo. Read [https://docs.brilo.ai/personal-assistants/connect](https://docs.brilo.ai/personal-assistants/connect)." If it has lost its key, paste the prompt again. |
| Muse says it cannot connect to Brilo               | Ask it to add Brilo as a connection with an API key, then paste the prompt again.                                                                                                                      |
| The link says the code expired                     | Ask Muse to start again. You were not charged.                                                                                                                                                         |
| Muse is still setting up after 10 minutes          | Brilo is finishing your setup. You do not need to do anything.                                                                                                                                         |

Setting up a different assistant? See [all personal assistants](/personal-assistants).
