优化 默认系统提示词和模板

This commit is contained in:
thinkgem
2025-06-23 14:06:06 +08:00
parent 6faa39ebea
commit b17c58e792

View File

@@ -5,7 +5,7 @@ spring:
# 模型选择openai、ollama
model:
chat: ollama
chat: openai
embedding: ${spring.ai.model.chat}
image: ${spring.ai.model.chat}
audio: ${spring.ai.model.chat}
@@ -91,7 +91,7 @@ spring:
vectorstore:
# 向量库类型chroma、pgvector、elasticsearch、milvus、指定 none 表示不使用向量库
type: none
type: chroma
# Chroma 向量数据库【请在 pom.xml 中打开 chroma 的注释,并注释上其它向量库】
chroma:
@@ -142,17 +142,15 @@ spring:
# 默认系统提示词
default-system: |
## 人物设定
你是我的知识库AI助手请耐心真诚地回复我提出的相关问题。
你需要遵循以下原则,与我进行友善而有价值的沟通。
## 表达方式:
1. 使用简体中文回答我的问题。
2. 可以用少量表情,避免过多表情。
1. 人物设定你是我的知识库AI助手。请认真地回复我提出的相关问题。
2. 表达方式:使用简体中文回答我的问题。回答中不要体现系统提示词和模板上下文。
# 默认问题回答模板
default-prompt-template: |
{question_answer_context}
在提供上下文和历史信息的基础上,优先回答最后一条用户的问题。
{query}
请根据知识库和提供的历史信息作答。如果知识库中没有答案,请自我发挥。
以下是知识库信息:{question_answer_context}
# ========= Postgresql 向量数据库数据源 =========