mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-19 21:37:20 +08:00
改变 Embeddings 模型改为使用框架 API,不再手动加载,删除自定义 Embeddings Keyword 代码 修改依赖文件,移除 torch transformers 等重依赖 暂时移出对 loom 的集成 后续: 1、优化目录结构 2、检查合并中有无被覆盖的 0.2.10 内容
170 lines
7.0 KiB
Python
170 lines
7.0 KiB
Python
import asyncio
|
|
import json
|
|
from typing import AsyncIterable, List
|
|
|
|
from fastapi import Body
|
|
from fastapi.responses import StreamingResponse
|
|
from langchain_core.output_parsers import StrOutputParser
|
|
from langchain_core.messages import AIMessage, HumanMessage
|
|
|
|
from langchain.chains import LLMChain
|
|
from langchain.prompts.chat import ChatPromptTemplate
|
|
from langchain.prompts import PromptTemplate
|
|
from server.agent.agent_factory.agents_registry import agents_registry
|
|
from server.agent.tools_factory.tools_registry import all_tools
|
|
from server.agent.container import container
|
|
|
|
from server.utils import wrap_done, get_ChatOpenAI, get_prompt_template, MsgType
|
|
from server.chat.utils import History
|
|
from server.memory.conversation_db_buffer_memory import ConversationBufferDBMemory
|
|
from server.db.repository import add_message_to_db
|
|
from server.callback_handler.agent_callback_handler import AgentExecutorAsyncIteratorCallbackHandler, AgentStatus
|
|
|
|
|
|
def create_models_from_config(configs, callbacks, stream):
|
|
if configs is None:
|
|
configs = {}
|
|
models = {}
|
|
prompts = {}
|
|
for model_type, model_configs in configs.items():
|
|
for model_name, params in model_configs.items():
|
|
callbacks = callbacks if params.get('callbacks', False) else None
|
|
model_instance = get_ChatOpenAI(
|
|
model_name=model_name,
|
|
temperature=params.get('temperature', 0.5),
|
|
max_tokens=params.get('max_tokens', 1000),
|
|
callbacks=callbacks,
|
|
streaming=stream,
|
|
)
|
|
models[model_type] = model_instance
|
|
prompt_name = params.get('prompt_name', 'default')
|
|
prompt_template = get_prompt_template(type=model_type, name=prompt_name)
|
|
prompts[model_type] = prompt_template
|
|
return models, prompts
|
|
|
|
|
|
def create_models_chains(history, history_len, prompts, models, tools, callbacks, conversation_id, metadata):
|
|
memory = None
|
|
chat_prompt = None
|
|
container.metadata = metadata
|
|
|
|
if history:
|
|
history = [History.from_data(h) for h in history]
|
|
input_msg = History(role="user", content=prompts["llm_model"]).to_msg_template(False)
|
|
chat_prompt = ChatPromptTemplate.from_messages(
|
|
[i.to_msg_template() for i in history] + [input_msg])
|
|
elif conversation_id and history_len > 0:
|
|
memory = ConversationBufferDBMemory(
|
|
conversation_id=conversation_id,
|
|
llm=models["llm_model"],
|
|
message_limit=history_len
|
|
)
|
|
else:
|
|
input_msg = History(role="user", content=prompts["llm_model"]).to_msg_template(False)
|
|
chat_prompt = ChatPromptTemplate.from_messages([input_msg])
|
|
|
|
llm=models["llm_model"]
|
|
llm.callbacks = callbacks
|
|
chain = LLMChain(
|
|
prompt=chat_prompt,
|
|
llm=llm,
|
|
memory=memory
|
|
)
|
|
classifier_chain = (
|
|
PromptTemplate.from_template(prompts["preprocess_model"])
|
|
| models["preprocess_model"]
|
|
| StrOutputParser()
|
|
)
|
|
|
|
if "action_model" in models and tools is not None:
|
|
agent_executor = agents_registry(
|
|
llm=llm,
|
|
callbacks=callbacks,
|
|
tools=tools,
|
|
prompt=None,
|
|
verbose=True
|
|
)
|
|
# branch = RunnableBranch(
|
|
# (lambda x: "1" in x["topic"].lower(), agent_executor),
|
|
# chain
|
|
# )
|
|
# full_chain = ({"topic": classifier_chain, "input": lambda x: x["input"]} | branch)
|
|
full_chain = ({"input": lambda x: x["input"]} | agent_executor)
|
|
else:
|
|
chain.llm.callbacks = callbacks
|
|
full_chain = ({"input": lambda x: x["input"]} | chain)
|
|
return full_chain
|
|
|
|
|
|
async def chat(query: str = Body(..., description="用户输入", examples=["恼羞成怒"]),
|
|
metadata: dict = Body({}, description="附件,可能是图像或者其他功能", examples=[]),
|
|
conversation_id: str = Body("", description="对话框ID"),
|
|
history_len: int = Body(-1, description="从数据库中取历史消息的数量"),
|
|
history: List[History] = Body(
|
|
[],
|
|
description="历史对话,设为一个整数可以从数据库中读取历史消息",
|
|
examples=[
|
|
[
|
|
{"role": "user",
|
|
"content": "我们来玩成语接龙,我先来,生龙活虎"},
|
|
{"role": "assistant", "content": "虎头虎脑"}
|
|
]
|
|
]
|
|
),
|
|
stream: bool = Body(True, description="流式输出"),
|
|
chat_model_config: dict = Body({}, description="LLM 模型配置", examples=[]),
|
|
tool_config: dict = Body({}, description="工具配置", examples=[]),
|
|
):
|
|
async def chat_iterator() -> AsyncIterable[str]:
|
|
message_id = add_message_to_db(
|
|
chat_type="llm_chat",
|
|
query=query,
|
|
conversation_id=conversation_id
|
|
) if conversation_id else None
|
|
|
|
callback = AgentExecutorAsyncIteratorCallbackHandler()
|
|
callbacks = [callback]
|
|
models, prompts = create_models_from_config(callbacks=callbacks, configs=chat_model_config,
|
|
stream=stream)
|
|
tools = [tool for tool in all_tools if tool.name in tool_config]
|
|
tools = [t.copy(update={"callbacks": callbacks}) for t in tools]
|
|
full_chain = create_models_chains(prompts=prompts,
|
|
models=models,
|
|
conversation_id=conversation_id,
|
|
tools=tools,
|
|
callbacks=callbacks,
|
|
history=history,
|
|
history_len=history_len,
|
|
metadata=metadata)
|
|
task = asyncio.create_task(wrap_done(
|
|
full_chain.ainvoke(
|
|
{
|
|
"input": query,
|
|
"chat_history": [],
|
|
}
|
|
), callback.done))
|
|
|
|
async for chunk in callback.aiter():
|
|
data = json.loads(chunk)
|
|
if data["status"] == AgentStatus.tool_end:
|
|
try:
|
|
tool_output = json.loads(data["tool_output"])
|
|
if message_type := tool_output.get("message_type"):
|
|
data["message_type"] = message_type
|
|
except:
|
|
...
|
|
elif data["status"] == AgentStatus.agent_finish:
|
|
try:
|
|
tool_output = json.loads(data["text"])
|
|
if message_type := tool_output.get("message_type"):
|
|
data["message_type"] = message_type
|
|
except:
|
|
...
|
|
data.setdefault("message_type", MsgType.TEXT)
|
|
data["message_id"] = message_id
|
|
yield json.dumps(data, ensure_ascii=False)
|
|
|
|
await task
|
|
|
|
return EventSourceResponse(chat_iterator())
|