Skip to content

Commit

Permalink
remove part of ORM intro
Browse files Browse the repository at this point in the history
  • Loading branch information
EricZequan authored Oct 18, 2024
1 parent 9aa03cd commit b8a100a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 42 deletions.
4 changes: 0 additions & 4 deletions TOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,6 @@
- [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
40 changes: 2 additions & 38 deletions vector-search-integration-overview.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: 向量搜索集成概览
summary: 介绍 TiDB 向量搜索支持的 AI 框架、嵌入模型和 ORM 库
summary: 介绍 TiDB 向量搜索支持的 AI 框架、嵌入模型
---

# 向量搜索集成概览

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

> **警告:**
>
Expand Down Expand Up @@ -33,39 +33,3 @@ 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 b8a100a

Please sign in to comment.