chromadb向量数据库搭建和使用

一、服务端搭建

1.本地拉取容器镜像

|---------------------------------|
| docker pull chromadb``/chroma |

2.将本地容器镜像上传到远程服务器(如果远程服务器可以直接拉取镜像可以直接拉取,无需这一步)

|------------------------------------------------------------------------------------------------------------------|
| docker save -o chromadb.``tar chromadb``/chroma scp /Users/本地目录/chromadb``.``tar root@远程机器ip:``/远程机器路径 |

3.远程服务器加载并运行容器镜像

|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| docker load -i chromadb.``tar docker run --``rm --name chromadb -p 8001:8000 -``v .``/chromadb``:``/chroma/chroma --``env``-``file ./.chroma_env chromadb``/chroma |

注释:

复制代码
-p 8001:8000   将服务器8001端口映射到容器8000端口
复制代码
-v ./chromadb:/chroma/chroma     将服务器存储路径./chromadb映射到容器路径/chroma/chroma
复制代码
--env-file ./.chroma_env        容器服务chromadb运行时的相关配置

.chroma_env配置内容

|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| # 容器中数据是否持久化配置 IS_PERSISTENT=TRUE # 容器中向量数据存储路径 chroma-data=``/chroma/chroma/ # 服务端认证token CHROMA_SERVER_AUTHN_CREDENTIALS=``test``-token # 服务端认证方式 CHROMA_SERVER_AUTHN_PROVIDER=chromadb.auth.token_authn.TokenAuthenticationServerProvider |

二、客户端使用

需要安装依赖:pip install chromadb-client

|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| import chromadb import chromadb.utils.embedding_functions as embedding_functions import logging import sys from chromadb.config ``import Settings from dotenv ``import load_dotenv from datetime ``import datetime # 使用日志记录查看查询和事件 # log_format = '%(asctime)s - %(levelname)s - %(message)s' # logging.basicConfig(stream=sys.stdout, level=logging.INFO,format=log_format) # 获取向量数据库客户端 chroma_client ``= chromadb.HttpClient(host``=``'服务器ip'``, ``port``=``8001``, ``settings``=``Settings( ``chroma_client_auth_provider``=``"chromadb.auth.token_authn.TokenAuthClientProvider"``, ``chroma_client_auth_credentials``=``"test-token"``) ``) # 定义向量化函数(使用微软的azure) openai_ef ``= embedding_functions.OpenAIEmbeddingFunction( ``api_key``=``""``, ``api_base``=""``, ``api_type``=``"azure"``, ``api_version``=``""``, ``model_name``=``"embedding-3-small" ``) # 创建数据集 # collection = chroma_client.create_collection(name="my_collection", # embedding_function=openai_ef, # metadata={ # "description": "my first Chroma collection", # "created": str(datetime.now()) # } ) # 删除数据集 # chroma_client.delete_collection(name="my_collection") # 获取数据集 collection ``= chroma_client.get_collection(name``=``"my_collection"``,embedding_function``=``openai_ef) # 向数据集中增加数据 # collection.add( # documents=[ # "This is a document about pineapple", # "This is a document about hawai" # ], # metadatas=[{"chapter": "3", "verse": "16"}, {"chapter": "3", "verse": "5"}], # ids=["id1", "id2"] # ) # 文本查询数据 # results = collection.query( # query_texts=["This is a query document about hawai"], # Chroma will embed this for you # n_results=1 # how many results to return # ) # 文本查询并过滤 results ``= collection.query( ``query_texts``=``[``"This is a query document about hawai"``], ``n_results``=``2``, ``# metadatas 元数据过滤 ``# where={"verse": "16"}, ``# 文本内容过滤 ``where_document``=``{ ``"$contains"``:``"pineapple"``} ) print``(results) |

相关推荐
2401_832365528 小时前
JavaScript中rest参数(...args)取代arguments的优势
jvm·数据库·python
2301_779622419 小时前
Go语言怎么用信号量控制并发_Go语言semaphore信号量教程【入门】
jvm·数据库·python
2301_766283449 小时前
c++如何将控制台输出保存到文件_cout重定向到txt【详解】
jvm·数据库·python
北极的冰箱9 小时前
MySQL Ver 8.0.41 for macos14.7密码遗忘
数据库·mysql
XDH_CS10 小时前
MySQL 8.0 安装与 MySQL Workbench 使用全流程(超详细教程)
开发语言·数据库·mysql
treacle田10 小时前
达梦数据库-统计信息收集-记录
数据库·达梦数据库统计信息收集
审判长烧鸡11 小时前
PostgreSQL之索引/函数/触发器
数据库·postgresql·触发器·函数·索引
Data_Journal11 小时前
如何使用cURL更改User Agent
大数据·服务器·前端·javascript·数据库
Python私教11 小时前
GenericAgent PySide6 桌面应用深度解析:悬浮按钮 + 聊天面板的原生 Qt 方案
开发语言·数据库·qt
byoass12 小时前
企业云盘与设计软件深度集成:AutoCAD/Revit/SolidWorks插件开发与API集成实战
服务器·网络·数据库·安全·oracle·云计算