chore: standardize historical commit messages to follow Conventional Commits

This commit is contained in:
Annyfee
2025-11-28 11:31:43 +08:00
parent ad9c3c52e7
commit 2b40729110
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# LLM密钥
OPENAI_API_KEY=your_openai_api_key
# LangSmith 相关配置(用于调试/监控Langgraph流程) -- 未用到可暂时不更改
# LangSmith 相关配置(用于调试/监控Langgraph流程) —— 未用到可暂时不更改
LANGCHAIN_API_KEY=your_langsmith_api_key
+1
View File
@@ -1,5 +1,6 @@
name: Python CI
on:
push:
branches: [ main, master ]
+1 -1
View File
@@ -3,7 +3,7 @@
from pathlib import Path
from langchain_huggingface import HuggingFaceEmbeddings
# 获取embeddings模型 - 首次调用时自动下载
# 获取embeddings模型 -- 首次调用时自动下载
def get_embeddings(model_name="BAAI/bge-small-zh-v1.5",device="cpu",**kwargs):
# 支持更换其他向量化模型
local_dir = Path("models")/model_name.replace("/", "_")