Skip to content

Commit a221e9e

Browse files
committed
fix bugs
1 parent 50d63af commit a221e9e

File tree

6 files changed

+25
-17
lines changed

6 files changed

+25
-17
lines changed

apps/agentfabric/app.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -621,11 +621,16 @@ def preview_send_message(chatbot, input, _state, uuid_str, _user_token):
621621

622622
# get chat history from memory
623623
history = user_memory.get_history()
624+
# skip
625+
filtered_files = [
626+
item for item in append_files
627+
if not item.lower().endswith(('.jpeg', '.png', '.jpg', '.wav', '.gif', '.mp3'))
628+
]
624629

625630
use_llm = True if len(user_agent.function_list) else False
626631
ref_doc = user_memory.run(
627632
query=input.text,
628-
url=append_files,
633+
url=filtered_files,
629634
max_token=4000,
630635
top_k=2,
631636
checked=True,

apps/agentfabric/appBot.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,15 @@ def send_message(chatbot, input, _state, _user_token):
150150
# get short term memory history
151151
history = user_memory.get_history()
152152

153+
# skip
154+
filtered_files = [
155+
item for item in append_files
156+
if not item.lower().endswith(('.jpeg', '.png', '.jpg', '.wav', '.gif', '.mp3'))
157+
]
158+
153159
use_llm = True if len(user_agent.function_list) else False
154160
ref_doc = user_memory.run(
155-
query=input.text, url=append_files, checked=True, use_llm=use_llm)
161+
query=input.text, url=filtered_files, checked=True, use_llm=use_llm)
156162

157163
response = ''
158164
try:

apps/agentfabric/server.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -424,10 +424,10 @@ def generate():
424424
f'load history method: time consumed {time.time() - start_time}'
425425
)
426426

427-
# skip image upsert
427+
# skip
428428
filtered_files = [
429429
item for item in file_paths
430-
if not item.lower().endswith(('.jpeg', '.png', '.jpg'))
430+
if not item.lower().endswith(('.jpeg', '.png', '.jpg', '.wav', '.gif', '.mp3'))
431431
]
432432

433433
use_llm = True if len(user_agent.function_list) else False

modelscope_agent/agents/multi_role_play.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
Action: 工具的名称,必须是[{tool_names}]之一
3131
Action Input: 工具的输入
3232
Observation: <result>工具返回的结果</result>
33-
Answer: 根据Observation总结本次工具调用返回的结果,如果结果中出现url,请使用如下格式展示出来:![图片](url)
33+
Answer: 根据Observation总结本次工具调用返回的结果
3434
3535
"""
3636

@@ -59,10 +59,9 @@
5959
Action: The name of the tool, must be one of [{tool_names}]
6060
Action Input: Tool input
6161
Observation: <result>Tool returns result</result>
62-
Answer: Summarize the results of this tool call based on Observation. If the result contains url, %s
62+
Answer: Summarize the results of this tool call based on Observation.
6363
64-
""" % ('You can call zero or more times according to your needs:',
65-
'please display it in the following format:![Image](URL)')
64+
""" % ('You can call zero or more times according to your needs:')
6665

6766
PROMPT_TEMPLATE_EN = """{role_prompt}"""
6867

modelscope_agent/llm/utils/function_call_with_raw_prompt.py

+6-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Action: 工具的名称,必须是[{tool_names}]之一
2222
Action Input: 工具的输入
2323
Observation: <result>工具返回的结果</result>
24-
Answer: 根据Observation总结本次工具调用返回的结果,如果结果中出现url,请使用如下格式展示出来:![图片](url)
24+
Answer: 根据Observation总结本次工具调用返回的结果
2525
2626
"""
2727

@@ -47,7 +47,7 @@
4747
...
4848
Observation: <result>工具N返回的结果</result>
4949
50-
Answer: 根据Observation总结本次工具调用返回的结果,如果结果中出现url,请使用如下格式展示出来:![图片](url)
50+
Answer: 根据Observation总结本次工具调用返回的结果
5151
5252
"""
5353

@@ -64,10 +64,9 @@
6464
Action: The name of the tool, must be one of [{tool_names}]
6565
Action Input: Tool input
6666
Observation: <result>Tool returns result</result>
67-
Answer: Summarize the results of this tool call based on Observation. If the result contains url, %s
67+
Answer: Summarize the results of this tool call based on Observation.
6868
69-
""" % ('You can call zero or more times according to your needs:',
70-
'please display it in the following format:![Image](URL)')
69+
""" % ('You can call zero or more times according to your needs:')
7170

7271
TOOL_TEMPLATE_EN_PARALLEL = """
7372
# Tools
@@ -90,10 +89,9 @@
9089
Observation: <result>Tool 1 returns result</result>
9190
...
9291
Observation: <result>Tool N returns result</result>
93-
Answer: Summarize the results of this tool call based on Observation. If the result contains url, %s
92+
Answer: Summarize the results of this tool call based on Observation.
9493
95-
""" % ('You can call zero or more times according to your needs:',
96-
'please display it in the following format:![Image](URL)')
94+
""" % ('You can call zero or more times according to your needs:')
9795

9896
TOOL_TEMPLATE = {
9997
'zh': TOOL_TEMPLATE_ZH,

modelscope_agent/tools/utils/output_wrapper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def __init__(self, video, **kwargs) -> None:
178178

179179
self._raw_data = video
180180

181-
if self._path.endswith('.gif'):
181+
if self._path.split('?')[0].endswith('.gif'):
182182
self._repr = f'![IMAGEGEN]({self._path})'
183183
else:
184184
self._repr = f'<video src="{self._path}"/>'

0 commit comments

Comments
 (0)