pycoze 0.1.151__py3-none-any.whl → 0.1.152__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pycoze/bot/bot.py +25 -6
- {pycoze-0.1.151.dist-info → pycoze-0.1.152.dist-info}/METADATA +1 -1
- {pycoze-0.1.151.dist-info → pycoze-0.1.152.dist-info}/RECORD +6 -7
- pycoze/module.py +0 -0
- {pycoze-0.1.151.dist-info → pycoze-0.1.152.dist-info}/LICENSE +0 -0
- {pycoze-0.1.151.dist-info → pycoze-0.1.152.dist-info}/WHEEL +0 -0
- {pycoze-0.1.151.dist-info → pycoze-0.1.152.dist-info}/top_level.txt +0 -0
pycoze/bot/bot.py
CHANGED
@@ -2,17 +2,36 @@ from langchain_core.messages import HumanMessage
|
|
2
2
|
from .agent import INPUT_MESSAGE, output
|
3
3
|
from .agent_chat import agent_chat
|
4
4
|
import json
|
5
|
+
import threading
|
6
|
+
|
5
7
|
|
6
8
|
def chat(bot_setting_file: str):
|
7
9
|
history = []
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
10
|
+
stop_event = threading.Event()
|
11
|
+
|
12
|
+
def user_input_listener():
|
13
|
+
while not stop_event.is_set():
|
14
|
+
input_text = input()
|
15
|
+
if input_text:
|
16
|
+
stop_event.set()
|
17
|
+
if not input_text.startswith(INPUT_MESSAGE):
|
18
|
+
raise ValueError("Invalid message")
|
19
|
+
message = json.loads(input_text[len(INPUT_MESSAGE):])
|
20
|
+
history.append(HumanMessage(message["content"]))
|
21
|
+
# 中断当前的机器人输出
|
22
|
+
print("User interrupted the bot.")
|
23
|
+
# 重新开始对话
|
24
|
+
chat(bot_setting_file)
|
25
|
+
|
26
|
+
input_thread = threading.Thread(target=user_input_listener)
|
27
|
+
input_thread.start()
|
28
|
+
|
29
|
+
while not stop_event.is_set():
|
14
30
|
result = agent_chat(bot_setting_file, history)
|
15
31
|
history.append(output("assistant", result))
|
32
|
+
print(result) # 输出机器人回复
|
33
|
+
|
34
|
+
input_thread.join()
|
16
35
|
|
17
36
|
|
18
37
|
def get_chat_response(bot_setting_file: str, input_text: str):
|
@@ -1,10 +1,9 @@
|
|
1
1
|
pycoze/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
pycoze/module.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
2
|
pycoze/ai/__init__.py,sha256=odM2lgYSnApxw4AzLV_5AyaxL5_MLfydOSB1VmLGFyA,75
|
4
3
|
pycoze/ai/vram_reserve.py,sha256=QbqaA8qv87cnEpOVDMygi0BNMxuhLYwj1UKfR_D5BD4,4340
|
5
4
|
pycoze/bot/__init__.py,sha256=6HHMxDQVOyZM9dtSjQm9tjGnhj4h7CixD0JOvEwTi48,41
|
6
5
|
pycoze/bot/agent_chat.py,sha256=Ey45GpBHmzILsMee-iXc90mpiQK3VAm_gomd1tSScOI,2808
|
7
|
-
pycoze/bot/bot.py,sha256=
|
6
|
+
pycoze/bot/bot.py,sha256=kQrq5Inx6IQr14V00-KyHKWPyNPdJ32-LTt1ylbShp0,1313
|
8
7
|
pycoze/bot/agent/__init__.py,sha256=YR9vpkEQn1e4937r_xFPJXUCPBEJ0SFzEQDBe2x3-YA,157
|
9
8
|
pycoze/bot/agent/agent.py,sha256=Aue8nWeW_I7e1jo4o7cUjFFjrsV9NtVUiTX3EQYHmbA,3507
|
10
9
|
pycoze/bot/agent/assistant.py,sha256=3iLxnRvf_ia0cP-FHK5Fv4ylltlnzPq1KscRCFYqjkc,1147
|
@@ -24,8 +23,8 @@ pycoze/ui/ui_def.py,sha256=UhhU_yB3GV9ISbvTWT48hsHPHI250BhMILh6bu5Uioo,4206
|
|
24
23
|
pycoze/utils/__init__.py,sha256=ET0W5wzq4zlY3dr1wHVbbeRKlKdC_zqHt9b0jZyHohw,94
|
25
24
|
pycoze/utils/arg.py,sha256=orLVEGw3x2f3l7bZDbBPkkdDPSdqXo-_Rs-4ZhzmrEw,984
|
26
25
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
27
|
-
pycoze-0.1.
|
28
|
-
pycoze-0.1.
|
29
|
-
pycoze-0.1.
|
30
|
-
pycoze-0.1.
|
31
|
-
pycoze-0.1.
|
26
|
+
pycoze-0.1.152.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
27
|
+
pycoze-0.1.152.dist-info/METADATA,sha256=GABqnA8bFV7XDdbDRhfBZ5PdekFZQcxaV7cHqw-Re_o,726
|
28
|
+
pycoze-0.1.152.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
|
29
|
+
pycoze-0.1.152.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
30
|
+
pycoze-0.1.152.dist-info/RECORD,,
|
pycoze/module.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|