From a5f33c88d19278e993294105b4d95f16603d949e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=A6=82=E5=A8=81?= Date: Mon, 24 Nov 2025 14:51:24 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A4=84=E7=90=86=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .sample-env | 8 ++++++++ requirements.txt | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .sample-env diff --git a/.sample-env b/.sample-env new file mode 100644 index 0000000..9bacf11 --- /dev/null +++ b/.sample-env @@ -0,0 +1,8 @@ +# 主模型 +MAIN_HTTP_URL=http://localhost:8022/v1/chat/completions +MAIN_HTTP_KEY=sk-local-827ccb0eea8a706c4c34a16891f84e7b +MAIN_MODEL_NAME=Qwen2.5 +# Embedding +EMBEDDING_HTTP_URL=http://localhost:8023/v1/embeddings +EMBEDDING_HTTP_KEY=sk-local-827ccb0eea8a706c4c34a16891f84e7b +EMBEDDING_MODEL_NAME=Qwen3-Embedding \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 3b87d14..fcecb49 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ httpx==0.28.1 -chromadb==1.3.4 \ No newline at end of file +chromadb==1.3.4 +python-dotenv==1.2.1 \ No newline at end of file