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