1 Star 0 Fork 8

chenqf/privateGPT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
constants.py 372 Bytes
一键复制 编辑 原始数据 按行查看 历史
Iván Martínez 提交于 2023-05-20 12:29 . Formatting fixes
import os
from dotenv import load_dotenv
from chromadb.config import Settings
load_dotenv()
# Define the folder for storing database
PERSIST_DIRECTORY = os.environ.get('PERSIST_DIRECTORY')
# Define the Chroma settings
CHROMA_SETTINGS = Settings(
chroma_db_impl='duckdb+parquet',
persist_directory=PERSIST_DIRECTORY,
anonymized_telemetry=False
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chenqf1/privateGPT.git
[email protected]:chenqf1/privateGPT.git
chenqf1
privateGPT
privateGPT
main

搜索帮助