Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions _docs/latest/ai/metabot.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,14 @@ latest: true

# Metabot - Metabase's AI assistant

{% include beta-blockquote.html %}

> For now, [Metabot](/features/metabot-ai) is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.
{% include beta-blockquote.html
message="For now, <a href='https://www.metabase.com/features/metabot-ai'>Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud."
%}

![Meet Metabot](./images/metabot.png)

Metabot helps you analyze your data by creating charts from natural language, generating SQL queries, fixing query errors, and analyzing existing visualizations.

> Like with all generative AI, you'll always need to double-check results.

To set up Metabot, see [Metabot settings](./settings).

## What Metabot can do
Expand All @@ -37,6 +35,8 @@ Metabot can help you to:
- [Fix errors in SQL code](#have-metabot-fix-sql-queries).
- Answer questions from our documentation (as in, the literature you're reading right now).

Like with all generative AI, you'll always need to double-check results.

## The Metabot chat sidebar

![Metabot chat sidebar](./images/metabot-conversation-sidebar.png)
Expand Down
8 changes: 4 additions & 4 deletions _docs/latest/ai/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ latest: true

# Metabot settings

{% include beta-blockquote.html %}

> For now, [Metabot](/features/metabot-ai) is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.
{% include beta-blockquote.html
message="For now, <a href='https://www.metabase.com/features/metabot-ai'>Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud."
%}

_Settings > Admin settings > AI_

This page covers admin settings for Metabase's AI assistant, Metabot.
This page covers admin settings for Metabase's AI assistant, [Metabot](./metabot).

## Configure Metabot

Expand Down
4 changes: 2 additions & 2 deletions _docs/latest/troubleshooting-guide/db-connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ psql -h HOSTNAME -p PORT -d DATABASENAME -U DATABASEUSER

## Snowflake error when running via JAR file

If you're connecting to Snowflake and encounter an error like, `JDBC driver internal error: exception creating result` and are running from the JAR file, add the following option to your java command:
If you're connecting to Snowflake and encounter an error like, `JDBC driver internal error: exception creating result` and are running from the JAR file, add `--add-opens java.base/java.nio=ALL-UNNAMED` to your `java` command:

```
java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar
```

See [the documentation on running the Metabase jar file](/docs/latest/installation-and-operation/running-the-metabase-jar-file) for more details.
See the docs on [running the Metabase jar file](../installation-and-operation/running-the-metabase-jar-file).

## Related problems

Expand Down
10 changes: 5 additions & 5 deletions _docs/v0.56/ai/metabot.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ summary: 'Metabot is Metabase''s AI assistant that helps you analyze data, creat

# Metabot - Metabase's AI assistant

{% include beta-blockquote.html %}

> For now, [Metabot](/features/metabot-ai) is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.
{% include beta-blockquote.html
message="For now, <a href='https://www.metabase.com/features/metabot-ai'>Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud."
%}

![Meet Metabot](./images/metabot.png)

Metabot helps you analyze your data by creating charts from natural language, generating SQL queries, fixing query errors, and analyzing existing visualizations.

> Like with all generative AI, you'll always need to double-check results.

To set up Metabot, see [Metabot settings](./settings).

## What Metabot can do
Expand All @@ -34,6 +32,8 @@ Metabot can help you to:
- [Fix errors in SQL code](#have-metabot-fix-sql-queries).
- Answer questions from our documentation (as in, the literature you're reading right now).

Like with all generative AI, you'll always need to double-check results.

## The Metabot chat sidebar

![Metabot chat sidebar](./images/metabot-conversation-sidebar.png)
Expand Down
8 changes: 4 additions & 4 deletions _docs/v0.56/ai/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ summary: 'Configure Metabot settings, including which collections Metabot can ac

# Metabot settings

{% include beta-blockquote.html %}

> For now, [Metabot](/features/metabot-ai) is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.
{% include beta-blockquote.html
message="For now, <a href='https://www.metabase.com/features/metabot-ai'>Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud."
%}

_Settings > Admin settings > AI_

This page covers admin settings for Metabase's AI assistant, Metabot.
This page covers admin settings for Metabase's AI assistant, [Metabot](./metabot).

## Configure Metabot

Expand Down
4 changes: 2 additions & 2 deletions _docs/v0.56/troubleshooting-guide/db-connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ psql -h HOSTNAME -p PORT -d DATABASENAME -U DATABASEUSER

## Snowflake error when running via JAR file

If you're connecting to Snowflake and encounter an error like, `JDBC driver internal error: exception creating result` and are running from the JAR file, add the following option to your java command:
If you're connecting to Snowflake and encounter an error like, `JDBC driver internal error: exception creating result` and are running from the JAR file, add `--add-opens java.base/java.nio=ALL-UNNAMED` to your `java` command:

```
java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar
```

See [the documentation on running the Metabase jar file](/docs/latest/installation-and-operation/running-the-metabase-jar-file) for more details.
See the docs on [running the Metabase jar file](../installation-and-operation/running-the-metabase-jar-file).

## Related problems

Expand Down
17 changes: 7 additions & 10 deletions _site/docs/latest/ai/metabot.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<meta name="twitter:site" content="@metabase">

<meta name="twitter:title" content="Metabot - Metabase's AI assistant | Metabase Documentation">
<meta name="twitter:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="twitter:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Twitter cards -->
Expand All @@ -57,7 +57,7 @@
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.metabase.com/docs/latest/ai/metabot">
<meta name="title" property="og:title" content="Metabot - Metabase's AI assistant | Metabase Documentation">
<meta name="description" property="og:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="description" property="og:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="image" property="og:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Open Graph metadata -->

Expand Down Expand Up @@ -4811,21 +4811,16 @@ <h1 id="metabot---metabases-ai-assistant">Metabot - Metabase’s AI assistant</h
⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work
as expected).

<br><br>
For now, <a href="https://www.metabase.com/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.

</blockquote>
</div>

<blockquote>
<p>For now, <a href="/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.</p>
</blockquote>

<p><img src="./images/metabot.png" alt="Meet Metabot"></p>

<p>Metabot helps you analyze your data by creating charts from natural language, generating SQL queries, fixing query errors, and analyzing existing visualizations.</p>

<blockquote>
<p>Like with all generative AI, you’ll always need to double-check results.</p>
</blockquote>

<p>To set up Metabot, see <a href="./settings">Metabot settings</a>.</p>

<h2 id="what-metabot-can-do">What Metabot can do</h2>
Expand All @@ -4840,6 +4835,8 @@ <h2 id="what-metabot-can-do">What Metabot can do</h2>
<li>Answer questions from our documentation (as in, the literature you’re reading right now).</li>
</ul>

<p>Like with all generative AI, you’ll always need to double-check results.</p>

<h2 id="the-metabot-chat-sidebar">The Metabot chat sidebar</h2>

<p><img src="./images/metabot-conversation-sidebar.png" alt="Metabot chat sidebar"></p>
Expand Down
13 changes: 6 additions & 7 deletions _site/docs/latest/ai/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<meta name="twitter:site" content="@metabase">

<meta name="twitter:title" content="Metabot settings | Metabase Documentation">
<meta name="twitter:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="twitter:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Twitter cards -->
Expand All @@ -57,7 +57,7 @@
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.metabase.com/docs/latest/ai/settings">
<meta name="title" property="og:title" content="Metabot settings | Metabase Documentation">
<meta name="description" property="og:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="description" property="og:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="image" property="og:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Open Graph metadata -->

Expand Down Expand Up @@ -4811,16 +4811,15 @@ <h1 id="metabot-settings">Metabot settings</h1>
⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work
as expected).

<br><br>
For now, <a href="https://www.metabase.com/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.

</blockquote>
</div>

<blockquote>
<p>For now, <a href="/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.</p>
</blockquote>

<p><em>Settings &gt; Admin settings &gt; AI</em></p>

<p>This page covers admin settings for Metabase’s AI assistant, Metabot.</p>
<p>This page covers admin settings for Metabase’s AI assistant, <a href="./metabot">Metabot</a>.</p>

<h2 id="configure-metabot">Configure Metabot</h2>

Expand Down
4 changes: 2 additions & 2 deletions _site/docs/latest/troubleshooting-guide/db-connection.html
Original file line number Diff line number Diff line change
Expand Up @@ -4941,12 +4941,12 @@ <h3 id="testing-the-connection-status">Testing the connection status</h3>

<h2 id="snowflake-error-when-running-via-jar-file">Snowflake error when running via JAR file</h2>

<p>If you’re connecting to Snowflake and encounter an error like, <code class="language-plaintext highlighter-rouge">JDBC driver internal error: exception creating result</code> and are running from the JAR file, add the following option to your java command:</p>
<p>If you’re connecting to Snowflake and encounter an error like, <code class="language-plaintext highlighter-rouge">JDBC driver internal error: exception creating result</code> and are running from the JAR file, add <code class="language-plaintext highlighter-rouge">--add-opens java.base/java.nio=ALL-UNNAMED</code> to your <code class="language-plaintext highlighter-rouge">java</code> command:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar
</code></pre></div></div>

<p>See <a href="/docs/latest/installation-and-operation/running-the-metabase-jar-file">the documentation on running the Metabase jar file</a> for more details.</p>
<p>See the docs on <a href="../installation-and-operation/running-the-metabase-jar-file">running the Metabase jar file</a>.</p>

<h2 id="related-problems">Related problems</h2>

Expand Down
17 changes: 7 additions & 10 deletions _site/docs/v0.56/ai/metabot.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<meta name="twitter:site" content="@metabase">

<meta name="twitter:title" content="Metabot - Metabase's AI assistant | Metabase Documentation">
<meta name="twitter:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="twitter:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Twitter cards -->
Expand All @@ -59,7 +59,7 @@
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.metabase.com/docs/v0.56/ai/metabot">
<meta name="title" property="og:title" content="Metabot - Metabase's AI assistant | Metabase Documentation">
<meta name="description" property="og:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="description" property="og:description" content="Metabot - Metabase’s AI assistant ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is...">
<meta name="image" property="og:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Open Graph metadata -->

Expand Down Expand Up @@ -4813,21 +4813,16 @@ <h1 id="metabot---metabases-ai-assistant">Metabot - Metabase’s AI assistant</h
⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work
as expected).

<br><br>
For now, <a href="https://www.metabase.com/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.

</blockquote>
</div>

<blockquote>
<p>For now, <a href="/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.</p>
</blockquote>

<p><img src="./images/metabot.png" alt="Meet Metabot"></p>

<p>Metabot helps you analyze your data by creating charts from natural language, generating SQL queries, fixing query errors, and analyzing existing visualizations.</p>

<blockquote>
<p>Like with all generative AI, you’ll always need to double-check results.</p>
</blockquote>

<p>To set up Metabot, see <a href="./settings">Metabot settings</a>.</p>

<h2 id="what-metabot-can-do">What Metabot can do</h2>
Expand All @@ -4842,6 +4837,8 @@ <h2 id="what-metabot-can-do">What Metabot can do</h2>
<li>Answer questions from our documentation (as in, the literature you’re reading right now).</li>
</ul>

<p>Like with all generative AI, you’ll always need to double-check results.</p>

<h2 id="the-metabot-chat-sidebar">The Metabot chat sidebar</h2>

<p><img src="./images/metabot-conversation-sidebar.png" alt="Metabot chat sidebar"></p>
Expand Down
13 changes: 6 additions & 7 deletions _site/docs/v0.56/ai/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<meta name="twitter:site" content="@metabase">

<meta name="twitter:title" content="Metabot settings | Metabase Documentation">
<meta name="twitter:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="twitter:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Twitter cards -->
Expand All @@ -59,7 +59,7 @@
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.metabase.com/docs/v0.56/ai/settings">
<meta name="title" property="og:title" content="Metabot settings | Metabase Documentation">
<meta name="description" property="og:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="description" property="og:description" content="Metabot settings ⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work as expected). For now, Metabot is only available as...">
<meta name="image" property="og:image" content="https://www.metabase.com/images/docs/docs-og.png">
<!-- end of Open Graph metadata -->

Expand Down Expand Up @@ -4813,16 +4813,15 @@ <h1 id="metabot-settings">Metabot settings</h1>
⚠️ This feature is in beta. Feel free to play around with it, but be aware that things might change (and may not work
as expected).

<br><br>
For now, <a href="https://www.metabase.com/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.

</blockquote>
</div>

<blockquote>
<p>For now, <a href="/features/metabot-ai">Metabot</a> is only available as an add-on for Pro and Enterprise plans on Metabase Cloud.</p>
</blockquote>

<p><em>Settings &gt; Admin settings &gt; AI</em></p>

<p>This page covers admin settings for Metabase’s AI assistant, Metabot.</p>
<p>This page covers admin settings for Metabase’s AI assistant, <a href="./metabot">Metabot</a>.</p>

<h2 id="configure-metabot">Configure Metabot</h2>

Expand Down
4 changes: 2 additions & 2 deletions _site/docs/v0.56/troubleshooting-guide/db-connection.html
Original file line number Diff line number Diff line change
Expand Up @@ -4943,12 +4943,12 @@ <h3 id="testing-the-connection-status">Testing the connection status</h3>

<h2 id="snowflake-error-when-running-via-jar-file">Snowflake error when running via JAR file</h2>

<p>If you’re connecting to Snowflake and encounter an error like, <code class="language-plaintext highlighter-rouge">JDBC driver internal error: exception creating result</code> and are running from the JAR file, add the following option to your java command:</p>
<p>If you’re connecting to Snowflake and encounter an error like, <code class="language-plaintext highlighter-rouge">JDBC driver internal error: exception creating result</code> and are running from the JAR file, add <code class="language-plaintext highlighter-rouge">--add-opens java.base/java.nio=ALL-UNNAMED</code> to your <code class="language-plaintext highlighter-rouge">java</code> command:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>java --add-opens java.base/java.nio=ALL-UNNAMED -jar metabase.jar
</code></pre></div></div>

<p>See <a href="/docs/latest/installation-and-operation/running-the-metabase-jar-file">the documentation on running the Metabase jar file</a> for more details.</p>
<p>See the docs on <a href="../installation-and-operation/running-the-metabase-jar-file">running the Metabase jar file</a>.</p>

<h2 id="related-problems">Related problems</h2>

Expand Down