2024-07-07 01:58:23 +08:00
|
|
|
import os
|
|
|
|
|
from dotenv import load_dotenv
|
2024-07-09 05:04:20 +08:00
|
|
|
from core import HistoryManager
|
2024-07-10 12:56:53 +08:00
|
|
|
from core import PreRetrieval, Retriever
|
2024-07-07 01:58:23 +08:00
|
|
|
from config import Config
|
2024-07-07 17:21:07 +08:00
|
|
|
from models import select_model
|
2024-07-07 01:58:23 +08:00
|
|
|
|
|
|
|
|
load_dotenv()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
config = Config("config/base.yaml")
|
2024-07-07 17:21:07 +08:00
|
|
|
model = select_model(config)
|
2024-07-10 12:56:53 +08:00
|
|
|
retriever = Retriever(config)
|
2024-07-09 16:38:05 +08:00
|
|
|
# pre_retrieval.add_file("/home/zwj/workspace/ProjectAthena/src/data/file/鉴定工作报告、技术报告-0708.pdf")
|
2024-07-07 01:58:23 +08:00
|
|
|
|
2024-07-07 17:21:07 +08:00
|
|
|
print(f"[{config.model_provider}:{config.get('model_name', 'default')}] Type 'exit' to quit")
|
2024-07-07 01:58:23 +08:00
|
|
|
|
|
|
|
|
history_manager = HistoryManager()
|
|
|
|
|
while True:
|
2024-07-10 12:56:53 +08:00
|
|
|
query = input("\nUser: ")
|
|
|
|
|
if query == "exit":
|
2024-07-07 01:58:23 +08:00
|
|
|
break
|
|
|
|
|
|
2024-07-10 12:56:53 +08:00
|
|
|
# 检索结果
|
|
|
|
|
refs = retriever(query)
|
|
|
|
|
# 重新构建用户的输入
|
|
|
|
|
query = retriever.construct_query(query, refs)
|
2024-07-09 05:04:20 +08:00
|
|
|
|
2024-07-10 12:56:53 +08:00
|
|
|
messages = history_manager.add_user(query)
|
2024-07-07 01:58:23 +08:00
|
|
|
response = model.predict(messages, stream=config.stream)
|
|
|
|
|
|
|
|
|
|
if config.stream:
|
|
|
|
|
content = ""
|
|
|
|
|
print(f"AI: ", end='', flush=True)
|
|
|
|
|
for chunk in response:
|
|
|
|
|
content += chunk.content
|
|
|
|
|
print(f"{chunk.content}", end='', flush=True)
|
|
|
|
|
print()
|
|
|
|
|
else:
|
|
|
|
|
content = response.content
|
|
|
|
|
print(f"AI: {content}")
|
|
|
|
|
|
|
|
|
|
history_manager.add_ai(content)
|