2024-01-23 19:58:23 +08:00
|
|
|
import json
|
|
|
|
import logging
|
2024-02-09 15:21:33 +08:00
|
|
|
from collections.abc import Generator
|
2024-04-10 14:48:40 +08:00
|
|
|
from copy import deepcopy
|
2024-02-09 15:21:33 +08:00
|
|
|
from typing import Any, Union
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
from core.agent.base_agent_runner import BaseAgentRunner
|
|
|
|
from core.app.apps.base_app_queue_manager import PublishFrom
|
|
|
|
from core.app.entities.queue_entities import QueueAgentThoughtEvent, QueueMessageEndEvent, QueueMessageFileEvent
|
2024-02-01 18:11:57 +08:00
|
|
|
from core.model_runtime.entities.llm_entities import LLMResult, LLMResultChunk, LLMResultChunkDelta, LLMUsage
|
2024-02-06 13:21:13 +08:00
|
|
|
from core.model_runtime.entities.message_entities import (
|
|
|
|
AssistantPromptMessage,
|
|
|
|
PromptMessage,
|
2024-04-10 14:48:40 +08:00
|
|
|
PromptMessageContentType,
|
2024-02-06 13:21:13 +08:00
|
|
|
SystemPromptMessage,
|
2024-04-10 14:48:40 +08:00
|
|
|
TextPromptMessageContent,
|
2024-02-06 13:21:13 +08:00
|
|
|
ToolPromptMessage,
|
|
|
|
UserPromptMessage,
|
|
|
|
)
|
2024-05-29 15:25:20 +08:00
|
|
|
from core.prompt.agent_history_prompt_transform import AgentHistoryPromptTransform
|
2024-04-08 18:51:46 +08:00
|
|
|
from core.tools.entities.tool_entities import ToolInvokeMeta
|
|
|
|
from core.tools.tool_engine import ToolEngine
|
2024-04-10 14:48:40 +08:00
|
|
|
from models.model import Message
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2024-05-29 15:25:20 +08:00
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
class FunctionCallAgentRunner(BaseAgentRunner):
|
|
|
|
def run(self, message: Message, query: str, **kwargs: Any) -> Generator[LLMResultChunk, None, None]:
|
2024-01-23 19:58:23 +08:00
|
|
|
"""
|
|
|
|
Run FunctionCall agent application
|
|
|
|
"""
|
2024-05-29 15:25:20 +08:00
|
|
|
self.query = query
|
2024-04-08 18:51:46 +08:00
|
|
|
app_generate_entity = self.application_generate_entity
|
|
|
|
|
|
|
|
app_config = self.app_config
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
# convert tools into ModelRuntime Tool format
|
2024-04-11 18:34:17 +08:00
|
|
|
tool_instances, prompt_messages_tools = self._init_prompt_tools()
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
iteration_step = 1
|
2024-04-08 18:51:46 +08:00
|
|
|
max_iteration_steps = min(app_config.agent.max_iteration, 5) + 1
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
# continue to run until there is not any tool call
|
|
|
|
function_call_state = True
|
2024-09-10 17:00:20 +08:00
|
|
|
llm_usage = {"usage": None}
|
|
|
|
final_answer = ""
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-06-26 17:33:29 +08:00
|
|
|
# get tracing instance
|
|
|
|
trace_manager = app_generate_entity.trace_manager
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-02-09 15:21:33 +08:00
|
|
|
def increase_usage(final_llm_usage_dict: dict[str, LLMUsage], usage: LLMUsage):
|
2024-09-10 17:00:20 +08:00
|
|
|
if not final_llm_usage_dict["usage"]:
|
|
|
|
final_llm_usage_dict["usage"] = usage
|
2024-01-23 19:58:23 +08:00
|
|
|
else:
|
2024-09-10 17:00:20 +08:00
|
|
|
llm_usage = final_llm_usage_dict["usage"]
|
2024-01-23 19:58:23 +08:00
|
|
|
llm_usage.prompt_tokens += usage.prompt_tokens
|
|
|
|
llm_usage.completion_tokens += usage.completion_tokens
|
|
|
|
llm_usage.prompt_price += usage.prompt_price
|
|
|
|
llm_usage.completion_price += usage.completion_price
|
2024-08-04 14:42:22 +08:00
|
|
|
llm_usage.total_price += usage.total_price
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-01-30 15:25:37 +08:00
|
|
|
model_instance = self.model_instance
|
|
|
|
|
2024-01-23 19:58:23 +08:00
|
|
|
while function_call_state and iteration_step <= max_iteration_steps:
|
|
|
|
function_call_state = False
|
|
|
|
|
|
|
|
if iteration_step == max_iteration_steps:
|
|
|
|
# the last iteration, remove all tools
|
|
|
|
prompt_messages_tools = []
|
|
|
|
|
|
|
|
message_file_ids = []
|
|
|
|
agent_thought = self.create_agent_thought(
|
2024-09-10 17:00:20 +08:00
|
|
|
message_id=message.id, message="", tool_name="", tool_input="", messages_ids=message_file_ids
|
2024-01-23 19:58:23 +08:00
|
|
|
)
|
|
|
|
|
2024-03-04 14:15:53 +08:00
|
|
|
# recalc llm max tokens
|
2024-05-29 15:25:20 +08:00
|
|
|
prompt_messages = self._organize_prompt_messages()
|
2024-03-04 13:32:17 +08:00
|
|
|
self.recalc_llm_max_tokens(self.model_config, prompt_messages)
|
2024-01-23 19:58:23 +08:00
|
|
|
# invoke model
|
2024-01-30 15:25:37 +08:00
|
|
|
chunks: Union[Generator[LLMResultChunk, None, None], LLMResult] = model_instance.invoke_llm(
|
2024-01-23 19:58:23 +08:00
|
|
|
prompt_messages=prompt_messages,
|
2024-06-14 01:05:37 +08:00
|
|
|
model_parameters=app_generate_entity.model_conf.parameters,
|
2024-01-23 19:58:23 +08:00
|
|
|
tools=prompt_messages_tools,
|
2024-06-14 01:05:37 +08:00
|
|
|
stop=app_generate_entity.model_conf.stop,
|
2024-01-30 15:25:37 +08:00
|
|
|
stream=self.stream_tool_call,
|
2024-01-23 19:58:23 +08:00
|
|
|
user=self.user_id,
|
|
|
|
callbacks=[],
|
|
|
|
)
|
|
|
|
|
2024-02-09 15:21:33 +08:00
|
|
|
tool_calls: list[tuple[str, str, dict[str, Any]]] = []
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
# save full response
|
2024-09-10 17:00:20 +08:00
|
|
|
response = ""
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
# save tool call names and inputs
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_call_names = ""
|
|
|
|
tool_call_inputs = ""
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
current_llm_usage = None
|
|
|
|
|
2024-01-30 15:25:37 +08:00
|
|
|
if self.stream_tool_call:
|
2024-02-01 15:30:50 +08:00
|
|
|
is_first_chunk = True
|
2024-01-30 15:25:37 +08:00
|
|
|
for chunk in chunks:
|
2024-02-01 15:30:50 +08:00
|
|
|
if is_first_chunk:
|
2024-09-10 17:00:20 +08:00
|
|
|
self.queue_manager.publish(
|
|
|
|
QueueAgentThoughtEvent(agent_thought_id=agent_thought.id), PublishFrom.APPLICATION_MANAGER
|
|
|
|
)
|
2024-02-01 15:30:50 +08:00
|
|
|
is_first_chunk = False
|
2024-01-30 15:25:37 +08:00
|
|
|
# check if there is any tool call
|
|
|
|
if self.check_tool_calls(chunk):
|
|
|
|
function_call_state = True
|
|
|
|
tool_calls.extend(self.extract_tool_calls(chunk))
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_call_names = ";".join([tool_call[1] for tool_call in tool_calls])
|
2024-01-30 15:25:37 +08:00
|
|
|
try:
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_call_inputs = json.dumps(
|
|
|
|
{tool_call[1]: tool_call[2] for tool_call in tool_calls}, ensure_ascii=False
|
|
|
|
)
|
2024-01-30 15:25:37 +08:00
|
|
|
except json.JSONDecodeError as e:
|
|
|
|
# ensure ascii to avoid encoding error
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_call_inputs = json.dumps({tool_call[1]: tool_call[2] for tool_call in tool_calls})
|
2024-01-30 15:25:37 +08:00
|
|
|
|
|
|
|
if chunk.delta.message and chunk.delta.message.content:
|
|
|
|
if isinstance(chunk.delta.message.content, list):
|
|
|
|
for content in chunk.delta.message.content:
|
|
|
|
response += content.data
|
|
|
|
else:
|
|
|
|
response += chunk.delta.message.content
|
|
|
|
|
|
|
|
if chunk.delta.usage:
|
|
|
|
increase_usage(llm_usage, chunk.delta.usage)
|
|
|
|
current_llm_usage = chunk.delta.usage
|
|
|
|
|
|
|
|
yield chunk
|
|
|
|
else:
|
|
|
|
result: LLMResult = chunks
|
2024-01-23 19:58:23 +08:00
|
|
|
# check if there is any tool call
|
2024-01-30 15:25:37 +08:00
|
|
|
if self.check_blocking_tool_calls(result):
|
2024-01-23 19:58:23 +08:00
|
|
|
function_call_state = True
|
2024-01-30 15:25:37 +08:00
|
|
|
tool_calls.extend(self.extract_blocking_tool_calls(result))
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_call_names = ";".join([tool_call[1] for tool_call in tool_calls])
|
2024-01-23 19:58:23 +08:00
|
|
|
try:
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_call_inputs = json.dumps(
|
|
|
|
{tool_call[1]: tool_call[2] for tool_call in tool_calls}, ensure_ascii=False
|
|
|
|
)
|
2024-01-23 19:58:23 +08:00
|
|
|
except json.JSONDecodeError as e:
|
|
|
|
# ensure ascii to avoid encoding error
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_call_inputs = json.dumps({tool_call[1]: tool_call[2] for tool_call in tool_calls})
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-01-30 15:25:37 +08:00
|
|
|
if result.usage:
|
|
|
|
increase_usage(llm_usage, result.usage)
|
|
|
|
current_llm_usage = result.usage
|
|
|
|
|
|
|
|
if result.message and result.message.content:
|
|
|
|
if isinstance(result.message.content, list):
|
|
|
|
for content in result.message.content:
|
2024-01-23 19:58:23 +08:00
|
|
|
response += content.data
|
|
|
|
else:
|
2024-01-30 15:25:37 +08:00
|
|
|
response += result.message.content
|
|
|
|
|
|
|
|
if not result.message.content:
|
2024-09-10 17:00:20 +08:00
|
|
|
result.message.content = ""
|
|
|
|
|
|
|
|
self.queue_manager.publish(
|
|
|
|
QueueAgentThoughtEvent(agent_thought_id=agent_thought.id), PublishFrom.APPLICATION_MANAGER
|
|
|
|
)
|
2024-01-30 15:25:37 +08:00
|
|
|
|
|
|
|
yield LLMResultChunk(
|
|
|
|
model=model_instance.model,
|
|
|
|
prompt_messages=result.prompt_messages,
|
|
|
|
system_fingerprint=result.system_fingerprint,
|
|
|
|
delta=LLMResultChunkDelta(
|
|
|
|
index=0,
|
|
|
|
message=result.message,
|
|
|
|
usage=result.usage,
|
2024-09-10 17:00:20 +08:00
|
|
|
),
|
2024-01-30 15:25:37 +08:00
|
|
|
)
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
assistant_message = AssistantPromptMessage(content="", tool_calls=[])
|
2024-01-30 15:25:37 +08:00
|
|
|
if tool_calls:
|
2024-09-10 17:00:20 +08:00
|
|
|
assistant_message.tool_calls = [
|
2024-04-09 15:30:09 +08:00
|
|
|
AssistantPromptMessage.ToolCall(
|
2024-01-30 15:25:37 +08:00
|
|
|
id=tool_call[0],
|
2024-09-10 17:00:20 +08:00
|
|
|
type="function",
|
2024-01-30 15:25:37 +08:00
|
|
|
function=AssistantPromptMessage.ToolCall.ToolCallFunction(
|
2024-09-10 17:00:20 +08:00
|
|
|
name=tool_call[1], arguments=json.dumps(tool_call[2], ensure_ascii=False)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
for tool_call in tool_calls
|
2024-04-09 15:30:09 +08:00
|
|
|
]
|
|
|
|
else:
|
|
|
|
assistant_message.content = response
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-05-29 15:25:20 +08:00
|
|
|
self._current_thoughts.append(assistant_message)
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
# save thought
|
|
|
|
self.save_agent_thought(
|
2024-09-10 17:00:20 +08:00
|
|
|
agent_thought=agent_thought,
|
2024-01-23 19:58:23 +08:00
|
|
|
tool_name=tool_call_names,
|
|
|
|
tool_input=tool_call_inputs,
|
|
|
|
thought=response,
|
2024-04-08 18:51:46 +08:00
|
|
|
tool_invoke_meta=None,
|
2024-01-23 19:58:23 +08:00
|
|
|
observation=None,
|
|
|
|
answer=response,
|
|
|
|
messages_ids=[],
|
2024-09-10 17:00:20 +08:00
|
|
|
llm_usage=current_llm_usage,
|
2024-01-23 19:58:23 +08:00
|
|
|
)
|
2024-09-10 17:00:20 +08:00
|
|
|
self.queue_manager.publish(
|
|
|
|
QueueAgentThoughtEvent(agent_thought_id=agent_thought.id), PublishFrom.APPLICATION_MANAGER
|
|
|
|
)
|
|
|
|
|
|
|
|
final_answer += response + "\n"
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
# call tools
|
|
|
|
tool_responses = []
|
|
|
|
for tool_call_id, tool_call_name, tool_call_args in tool_calls:
|
|
|
|
tool_instance = tool_instances.get(tool_call_name)
|
|
|
|
if not tool_instance:
|
|
|
|
tool_response = {
|
|
|
|
"tool_call_id": tool_call_id,
|
|
|
|
"tool_call_name": tool_call_name,
|
2024-04-08 18:51:46 +08:00
|
|
|
"tool_response": f"there is not a tool named {tool_call_name}",
|
2024-09-10 17:00:20 +08:00
|
|
|
"meta": ToolInvokeMeta.error_instance(f"there is not a tool named {tool_call_name}").to_dict(),
|
2024-01-23 19:58:23 +08:00
|
|
|
}
|
|
|
|
else:
|
|
|
|
# invoke tool
|
2024-04-08 18:51:46 +08:00
|
|
|
tool_invoke_response, message_files, tool_invoke_meta = ToolEngine.agent_invoke(
|
|
|
|
tool=tool_instance,
|
|
|
|
tool_parameters=tool_call_args,
|
|
|
|
user_id=self.user_id,
|
|
|
|
tenant_id=self.tenant_id,
|
|
|
|
message=self.message,
|
|
|
|
invoke_from=self.application_generate_entity.invoke_from,
|
|
|
|
agent_tool_callback=self.agent_callback,
|
2024-06-26 17:33:29 +08:00
|
|
|
trace_manager=trace_manager,
|
2024-04-08 18:51:46 +08:00
|
|
|
)
|
|
|
|
# publish files
|
2024-06-26 13:21:40 +08:00
|
|
|
for message_file_id, save_as in message_files:
|
2024-04-08 18:51:46 +08:00
|
|
|
if save_as:
|
2024-06-26 13:21:40 +08:00
|
|
|
self.variables_pool.set_file(tool_name=tool_call_name, value=message_file_id, name=save_as)
|
2024-04-08 18:51:46 +08:00
|
|
|
|
|
|
|
# publish message file
|
2024-09-10 17:00:20 +08:00
|
|
|
self.queue_manager.publish(
|
|
|
|
QueueMessageFileEvent(message_file_id=message_file_id), PublishFrom.APPLICATION_MANAGER
|
|
|
|
)
|
2024-04-08 18:51:46 +08:00
|
|
|
# add message file ids
|
2024-06-26 13:21:40 +08:00
|
|
|
message_file_ids.append(message_file_id)
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
tool_response = {
|
|
|
|
"tool_call_id": tool_call_id,
|
|
|
|
"tool_call_name": tool_call_name,
|
|
|
|
"tool_response": tool_invoke_response,
|
2024-09-10 17:00:20 +08:00
|
|
|
"meta": tool_invoke_meta.to_dict(),
|
2024-04-08 18:51:46 +08:00
|
|
|
}
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
tool_responses.append(tool_response)
|
2024-09-10 17:00:20 +08:00
|
|
|
if tool_response["tool_response"] is not None:
|
2024-05-29 15:25:20 +08:00
|
|
|
self._current_thoughts.append(
|
|
|
|
ToolPromptMessage(
|
2024-09-10 17:00:20 +08:00
|
|
|
content=tool_response["tool_response"],
|
2024-05-29 15:25:20 +08:00
|
|
|
tool_call_id=tool_call_id,
|
|
|
|
name=tool_call_name,
|
|
|
|
)
|
2024-09-10 17:00:20 +08:00
|
|
|
)
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
if len(tool_responses) > 0:
|
|
|
|
# save agent thought
|
|
|
|
self.save_agent_thought(
|
2024-09-10 17:00:20 +08:00
|
|
|
agent_thought=agent_thought,
|
2024-01-23 19:58:23 +08:00
|
|
|
tool_name=None,
|
|
|
|
tool_input=None,
|
2024-09-10 17:00:20 +08:00
|
|
|
thought=None,
|
2024-04-08 18:51:46 +08:00
|
|
|
tool_invoke_meta={
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_response["tool_call_name"]: tool_response["meta"] for tool_response in tool_responses
|
2024-04-08 18:51:46 +08:00
|
|
|
},
|
|
|
|
observation={
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_response["tool_call_name"]: tool_response["tool_response"]
|
2024-04-08 18:51:46 +08:00
|
|
|
for tool_response in tool_responses
|
|
|
|
},
|
2024-01-23 19:58:23 +08:00
|
|
|
answer=None,
|
2024-09-10 17:00:20 +08:00
|
|
|
messages_ids=message_file_ids,
|
|
|
|
)
|
|
|
|
self.queue_manager.publish(
|
|
|
|
QueueAgentThoughtEvent(agent_thought_id=agent_thought.id), PublishFrom.APPLICATION_MANAGER
|
2024-01-23 19:58:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# update prompt tool
|
|
|
|
for prompt_tool in prompt_messages_tools:
|
|
|
|
self.update_prompt_message_tool(tool_instances[prompt_tool.name], prompt_tool)
|
|
|
|
|
|
|
|
iteration_step += 1
|
|
|
|
|
|
|
|
self.update_db_variables(self.variables_pool, self.db_variables_pool)
|
|
|
|
# publish end event
|
2024-09-10 17:00:20 +08:00
|
|
|
self.queue_manager.publish(
|
|
|
|
QueueMessageEndEvent(
|
|
|
|
llm_result=LLMResult(
|
|
|
|
model=model_instance.model,
|
|
|
|
prompt_messages=prompt_messages,
|
|
|
|
message=AssistantPromptMessage(content=final_answer),
|
2024-09-12 15:50:49 +08:00
|
|
|
usage=llm_usage["usage"] or LLMUsage.empty_usage(),
|
2024-09-10 17:00:20 +08:00
|
|
|
system_fingerprint="",
|
|
|
|
)
|
2024-01-23 19:58:23 +08:00
|
|
|
),
|
2024-09-10 17:00:20 +08:00
|
|
|
PublishFrom.APPLICATION_MANAGER,
|
|
|
|
)
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
def check_tool_calls(self, llm_result_chunk: LLMResultChunk) -> bool:
|
|
|
|
"""
|
|
|
|
Check if there is any tool call in llm result chunk
|
|
|
|
"""
|
|
|
|
if llm_result_chunk.delta.message.tool_calls:
|
|
|
|
return True
|
|
|
|
return False
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-01-30 15:25:37 +08:00
|
|
|
def check_blocking_tool_calls(self, llm_result: LLMResult) -> bool:
|
|
|
|
"""
|
|
|
|
Check if there is any blocking tool call in llm result
|
|
|
|
"""
|
|
|
|
if llm_result.message.tool_calls:
|
|
|
|
return True
|
|
|
|
return False
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
def extract_tool_calls(
|
|
|
|
self, llm_result_chunk: LLMResultChunk
|
|
|
|
) -> Union[None, list[tuple[str, str, dict[str, Any]]]]:
|
2024-01-23 19:58:23 +08:00
|
|
|
"""
|
|
|
|
Extract tool calls from llm result chunk
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List[Tuple[str, str, Dict[str, Any]]]: [(tool_call_id, tool_call_name, tool_call_args)]
|
|
|
|
"""
|
|
|
|
tool_calls = []
|
|
|
|
for prompt_message in llm_result_chunk.delta.message.tool_calls:
|
2024-07-22 07:43:18 +08:00
|
|
|
args = {}
|
2024-09-10 17:00:20 +08:00
|
|
|
if prompt_message.function.arguments != "":
|
2024-07-22 07:43:18 +08:00
|
|
|
args = json.loads(prompt_message.function.arguments)
|
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_calls.append(
|
|
|
|
(
|
|
|
|
prompt_message.id,
|
|
|
|
prompt_message.function.name,
|
|
|
|
args,
|
|
|
|
)
|
|
|
|
)
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
return tool_calls
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-02-09 15:21:33 +08:00
|
|
|
def extract_blocking_tool_calls(self, llm_result: LLMResult) -> Union[None, list[tuple[str, str, dict[str, Any]]]]:
|
2024-01-30 15:25:37 +08:00
|
|
|
"""
|
|
|
|
Extract blocking tool calls from llm result
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List[Tuple[str, str, Dict[str, Any]]]: [(tool_call_id, tool_call_name, tool_call_args)]
|
|
|
|
"""
|
|
|
|
tool_calls = []
|
|
|
|
for prompt_message in llm_result.message.tool_calls:
|
2024-07-22 07:43:18 +08:00
|
|
|
args = {}
|
2024-09-10 17:00:20 +08:00
|
|
|
if prompt_message.function.arguments != "":
|
2024-07-22 07:43:18 +08:00
|
|
|
args = json.loads(prompt_message.function.arguments)
|
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
tool_calls.append(
|
|
|
|
(
|
|
|
|
prompt_message.id,
|
|
|
|
prompt_message.function.name,
|
|
|
|
args,
|
|
|
|
)
|
|
|
|
)
|
2024-01-30 15:25:37 +08:00
|
|
|
|
|
|
|
return tool_calls
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
def _init_system_message(
|
|
|
|
self, prompt_template: str, prompt_messages: list[PromptMessage] = None
|
|
|
|
) -> list[PromptMessage]:
|
2024-01-23 19:58:23 +08:00
|
|
|
"""
|
2024-04-10 14:48:40 +08:00
|
|
|
Initialize system message
|
2024-01-23 19:58:23 +08:00
|
|
|
"""
|
2024-04-10 14:48:40 +08:00
|
|
|
if not prompt_messages and prompt_template:
|
|
|
|
return [
|
2024-01-23 19:58:23 +08:00
|
|
|
SystemPromptMessage(content=prompt_template),
|
|
|
|
]
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-04-10 14:48:40 +08:00
|
|
|
if prompt_messages and not isinstance(prompt_messages[0], SystemPromptMessage) and prompt_template:
|
|
|
|
prompt_messages.insert(0, SystemPromptMessage(content=prompt_template))
|
|
|
|
|
|
|
|
return prompt_messages
|
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
def _organize_user_query(self, query, prompt_messages: list[PromptMessage] = None) -> list[PromptMessage]:
|
2024-04-10 14:48:40 +08:00
|
|
|
"""
|
|
|
|
Organize user query
|
|
|
|
"""
|
|
|
|
if self.files:
|
|
|
|
prompt_message_contents = [TextPromptMessageContent(data=query)]
|
|
|
|
for file_obj in self.files:
|
|
|
|
prompt_message_contents.append(file_obj.prompt_message_content)
|
|
|
|
|
|
|
|
prompt_messages.append(UserPromptMessage(content=prompt_message_contents))
|
2024-01-23 19:58:23 +08:00
|
|
|
else:
|
2024-04-10 14:48:40 +08:00
|
|
|
prompt_messages.append(UserPromptMessage(content=query))
|
|
|
|
|
|
|
|
return prompt_messages
|
2024-09-10 17:00:20 +08:00
|
|
|
|
2024-04-10 14:48:40 +08:00
|
|
|
def _clear_user_prompt_image_messages(self, prompt_messages: list[PromptMessage]) -> list[PromptMessage]:
|
|
|
|
"""
|
|
|
|
As for now, gpt supports both fc and vision at the first iteration.
|
|
|
|
We need to remove the image messages from the prompt messages at the first iteration.
|
|
|
|
"""
|
|
|
|
prompt_messages = deepcopy(prompt_messages)
|
|
|
|
|
|
|
|
for prompt_message in prompt_messages:
|
|
|
|
if isinstance(prompt_message, UserPromptMessage):
|
|
|
|
if isinstance(prompt_message.content, list):
|
2024-09-10 17:00:20 +08:00
|
|
|
prompt_message.content = "\n".join(
|
|
|
|
[
|
|
|
|
content.data
|
|
|
|
if content.type == PromptMessageContentType.TEXT
|
|
|
|
else "[image]"
|
|
|
|
if content.type == PromptMessageContentType.IMAGE
|
|
|
|
else "[file]"
|
|
|
|
for content in prompt_message.content
|
|
|
|
]
|
|
|
|
)
|
2024-01-23 19:58:23 +08:00
|
|
|
|
2024-05-29 15:25:20 +08:00
|
|
|
return prompt_messages
|
|
|
|
|
|
|
|
def _organize_prompt_messages(self):
|
2024-09-10 17:00:20 +08:00
|
|
|
prompt_template = self.app_config.prompt_template.simple_prompt_template or ""
|
2024-05-29 15:25:20 +08:00
|
|
|
self.history_prompt_messages = self._init_system_message(prompt_template, self.history_prompt_messages)
|
|
|
|
query_prompt_messages = self._organize_user_query(self.query, [])
|
|
|
|
|
|
|
|
self.history_prompt_messages = AgentHistoryPromptTransform(
|
|
|
|
model_config=self.model_config,
|
|
|
|
prompt_messages=[*query_prompt_messages, *self._current_thoughts],
|
|
|
|
history_messages=self.history_prompt_messages,
|
2024-09-10 17:00:20 +08:00
|
|
|
memory=self.memory,
|
2024-05-29 15:25:20 +08:00
|
|
|
).get_prompt()
|
|
|
|
|
2024-09-10 17:00:20 +08:00
|
|
|
prompt_messages = [*self.history_prompt_messages, *query_prompt_messages, *self._current_thoughts]
|
2024-05-29 15:25:20 +08:00
|
|
|
if len(self._current_thoughts) != 0:
|
|
|
|
# clear messages after the first iteration
|
|
|
|
prompt_messages = self._clear_user_prompt_image_messages(prompt_messages)
|
|
|
|
return prompt_messages
|