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
2 changes: 0 additions & 2 deletions guides/ai/getting_started_with_chat.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ sidebarTitle: Getting started with chat
description: Learn how to implement AI-powered conversational search in your application
---

import { Warning, Note } from '/snippets/notice_tag.mdx'

This guide walks you through implementing Meilisearch's chat completions feature to create conversational search experiences in your application.

<Warning>
Expand Down
6 changes: 4 additions & 2 deletions learn/ai_powered_search/conversational_search_with_chat.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ sidebarTitle: Conversational search
description: Learn how to implement AI-powered conversational search using Meilisearch's chat feature
---

import { Warning } from '/snippets/notice_tag.mdx'

Meilisearch's chat completions feature enables AI-powered conversational search, allowing users to ask questions in natural language and receive direct answers based on your indexed content. This feature transforms the traditional search experience into an interactive dialogue.

<Warning>
Expand Down Expand Up @@ -65,6 +63,10 @@ Meilisearch's chat completions consolidates these into one streamlined process:
- Exact matching is critical
- Response time is paramount

## Alternative: Model Context Protocol integration

When integrating Meilisearch with AI assistants and automation tools, consider using [Meilisearch's Model Context Protocol (MCP) server](/guides/ai/mcp). MCP enables standardized tool integration across various AI platforms and applications.

## Architecture overview

The chat completions feature operates through workspaces, which are isolated configurations for different use cases or tenants. Each workspace can:
Expand Down
5 changes: 5 additions & 0 deletions learn/resources/sdks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ You can use Meilisearch API wrappers in your favorite language. These libraries
- [Gatsby plugin](https://github.com/meilisearch/gatsby-plugin-meilisearch/)
- [Firebase](https://github.com/meilisearch/firestore-meilisearch)

## AI Assistant tools

- [meilisearch-mcp](https://github.com/meilisearch/meilisearch-mcp): Model Context Protocol server for integrating Meilisearch with AI assistants and tools
- Guide: [Model Context Protocol integration](/guides/ai/mcp)

## Other tools

- [docs-scraper](https://github.com/meilisearch/docs-scraper): a scraper tool to automatically read the content of your documentation and store it into Meilisearch.
Expand Down
1 change: 0 additions & 1 deletion reference/api/chats.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ description: The /chats route allows you to create conversational search experie
---

import { RouteHighlighter } from '/snippets/route_highlighter.mdx';
import { Warning } from '/snippets/notice_tag.mdx'

The `/chats` route enables AI-powered conversational search by integrating Large Language Models (LLMs) with your Meilisearch data. This feature allows users to ask questions in natural language and receive contextual answers based on your indexed content.

Expand Down