mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-19 21:37:20 +08:00
1、 默认包含2个模板,分别用于LLM对话,知识库和搜索引擎对话 2、 server/utils.py提供函数get_prompt_template,获取指定的prompt模板内容(支持热加载) 3、 api.py中chat/knowledge_base_chat/search_engine_chat接口支持prompt_name参数
9 lines
168 B
Python
9 lines
168 B
Python
from .basic_config import *
|
|
from .model_config import *
|
|
from .kb_config import *
|
|
from .server_config import *
|
|
from .prompt_config import *
|
|
|
|
|
|
VERSION = "v0.2.5-preview"
|