Skip to content

Commit

Permalink
Preview PR pingcap/docs-cn#18502 and this preview is triggered from c…
Browse files Browse the repository at this point in the history
  • Loading branch information
Docsite Preview Bot committed Oct 21, 2024
1 parent 395ead0 commit c275977
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
4 changes: 4 additions & 0 deletions markdown-pages/zh/tidb/master/TOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@
- [Langchain](/vector-search-integrate-with-langchain.md)
- 嵌入模型/服务
- [Jina AI](/vector-search-integrate-with-jinaai-embedding.md)
- ORM 库
- [SQLAlchemy](/vector-search-integrate-with-sqlalchemy.md)
- [peewee](/vector-search-integrate-with-peewee.md)
- [Django](/vector-search-integrate-with-django-orm.md)
- [优化搜索性能](/vector-search-improve-performance.md)
- [使用限制](/vector-search-limitations.md)
- 事务
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: 向量搜索集成概览
summary: 介绍 TiDB 向量搜索支持的 AI 框架和嵌入模型
summary: 介绍 TiDB 向量搜索支持的 AI 框架、嵌入模型和 ORM 库
---

# 向量搜索集成概览

本文档介绍了 TiDB 向量搜索支持的 AI 框架和嵌入模型
本文档介绍了 TiDB 向量搜索支持的 AI 框架、嵌入模型和对象关系映射 (ORM) 库

> **警告:**
>
Expand Down Expand Up @@ -33,3 +33,39 @@ TiDB 向量搜索支持存储高达 16383 维的向量,可适应大多数嵌
| 嵌入模型服务提供商 | 教程 |
|-----------------------------|---------------------------------------------------------------------------------------------------------------------|
| Jina AI | [结合 Jina AI 嵌入模型 API 使用 TiDB 向量搜索](/vector-search-integrate-with-jinaai-embedding.md) |

## 对象关系映射 (ORM) 库

你可以将 TiDB 向量搜索功能与 ORM 库结合使用,以便与 TiDB 数据库交互。

下表列出了支持的 ORM 库和相应的使用教程:

<table>
<tr>
<th>Language</th>
<th>ORM/Client</th>
<th>How to install</th>
<th>Tutorial</th>
</tr>
<tr>
<td rowspan="4">Python</td>
<td>TiDB Vector Client</td>
<td><code>pip install tidb-vector[client]</code></td>
<td><a href="/vector-search-get-started-using-python.md">使用 Python 开始向量搜索</a></td>
</tr>
<tr>
<td>SQLAlchemy</td>
<td><code>pip install tidb-vector</code></td>
<td><a href="/vector-search-integrate-with-sqlalchemy.md">在 SQLAlchemy 中使用 TiDB 向量搜索</a></td>
</tr>
<tr>
<td>peewee</td>
<td><code>pip install tidb-vector</code></td>
<td><a href="/vector-search-integrate-with-peewee.md">在 peewee 中使用 TiDB 向量搜索</a></td>
</tr>
<tr>
<td>Django</td>
<td><code>pip install django-tidb[vector]</code></td>
<td><a href="/vector-search-integrate-with-django-orm.md">在 Django 中使用 TiDB 向量搜索</a></td>
</tr>
</table>

0 comments on commit c275977

Please sign in to comment.