|
| 1 | +import datetime |
| 2 | +import json |
| 3 | + |
| 4 | +from pydantic import BaseModel |
| 5 | + |
| 6 | +from azure.ai.projects.models import RunStepFunctionToolCall |
| 7 | + |
| 8 | +from typing import List, Optional, Union |
| 9 | + |
| 10 | +# Message roles constants. |
| 11 | +_SYSTEM = "system" |
| 12 | +_USER = "user" |
| 13 | +_AGENT = "assistant" |
| 14 | +_TOOL = "tool" |
| 15 | + |
| 16 | +# Constant definitions for what tool details include. |
| 17 | +_TOOL_CALL = "tool_call" |
| 18 | +_TOOL_RESULT = "tool_result" |
| 19 | +_FUNCTION = "function" |
| 20 | + |
| 21 | +# This is returned by AI services in the API to filter against tool invocations. |
| 22 | +_TOOL_CALLS = "tool_calls" |
| 23 | + |
| 24 | + |
| 25 | +class Message(BaseModel): |
| 26 | + """Represents a message in a conversation with agents, assistants, and tools. We need to export these structures |
| 27 | + to JSON for evaluators and we have custom fields such as createdAt, run_id, and tool_call_id, so we cannot use |
| 28 | + the standard pydantic models provided by OpenAI. |
| 29 | +
|
| 30 | + :param createdAt: The timestamp when the message was created. |
| 31 | + :type createdAt: datetime.datetime |
| 32 | + :param run_id: The ID of the run associated with the message. Optional. |
| 33 | + :type run_id: Optional[str] |
| 34 | + :param role: The role of the message sender (e.g., system, user, tool, assistant). |
| 35 | + :type role: str |
| 36 | + :param content: The content of the message, which can be a string or a list of dictionaries. |
| 37 | + :type content: Union[str, List[dict]] |
| 38 | + """ |
| 39 | + |
| 40 | + createdAt: Optional[Union[datetime.datetime, int]] = None # SystemMessage wouldn't have this |
| 41 | + run_id: Optional[str] = None |
| 42 | + tool_call_id: Optional[str] = None # see ToolMessage |
| 43 | + role: str |
| 44 | + content: Union[str, List[dict]] |
| 45 | + |
| 46 | + |
| 47 | +class SystemMessage(Message): |
| 48 | + """Represents a system message in a conversation with agents, assistants, and tools. |
| 49 | +
|
| 50 | + :param role: The role of the message sender, which is always 'system'. |
| 51 | + :type role: str |
| 52 | + """ |
| 53 | + |
| 54 | + role: str = _SYSTEM |
| 55 | + |
| 56 | + |
| 57 | +class UserMessage(Message): |
| 58 | + """Represents a user message in a conversation with agents, assistants, and tools. |
| 59 | +
|
| 60 | + :param role: The role of the message sender, which is always 'user'. |
| 61 | + :type role: str |
| 62 | + """ |
| 63 | + |
| 64 | + role: str = _USER |
| 65 | + |
| 66 | + |
| 67 | +class ToolMessage(Message): |
| 68 | + """Represents a tool message in a conversation with agents, assistants, and tools. |
| 69 | +
|
| 70 | + :param run_id: The ID of the run associated with the message. |
| 71 | + :type run_id: str |
| 72 | + :param role: The role of the message sender, which is always 'tool'. |
| 73 | + :type role: str |
| 74 | + :param tool_call_id: The ID of the tool call associated with the message. Optional. |
| 75 | + :type tool_call_id: Optional[str] |
| 76 | + """ |
| 77 | + |
| 78 | + run_id: str |
| 79 | + role: str = _TOOL |
| 80 | + tool_call_id: Optional[str] = None |
| 81 | + |
| 82 | + |
| 83 | +class AssistantMessage(Message): |
| 84 | + """Represents an assistant message. |
| 85 | +
|
| 86 | + :param run_id: The ID of the run associated with the message. |
| 87 | + :type run_id: str |
| 88 | + :param role: The role of the message sender, which is always 'assistant'. |
| 89 | + :type role: str |
| 90 | + """ |
| 91 | + |
| 92 | + run_id: str |
| 93 | + role: str = _AGENT |
| 94 | + |
| 95 | + |
| 96 | +class ToolDefinition(BaseModel): |
| 97 | + """Represents a tool definition that will be used in the agent. |
| 98 | +
|
| 99 | + :param name: The name of the tool. |
| 100 | + :type name: str |
| 101 | + :param description: A description of the tool. |
| 102 | + :type description: str |
| 103 | + :param parameters: The parameters required by the tool. |
| 104 | + :type parameters: dict |
| 105 | + """ |
| 106 | + |
| 107 | + name: str |
| 108 | + description: Optional[str] = None |
| 109 | + parameters: dict |
| 110 | + |
| 111 | + |
| 112 | +class ToolCall: |
| 113 | + """Represents a tool call, used as an intermediate step in the conversion process. |
| 114 | +
|
| 115 | + :param created: The timestamp when the tool call was created. |
| 116 | + :type created: datetime.datetime |
| 117 | + :param completed: The timestamp when the tool call was completed. |
| 118 | + :type completed: datetime.datetime |
| 119 | + :param details: The details of the tool call. |
| 120 | + :type details: RunStepFunctionToolCall |
| 121 | + """ |
| 122 | + |
| 123 | + def __init__(self, created: datetime.datetime, completed: datetime.datetime, details: RunStepFunctionToolCall): |
| 124 | + self.created = created |
| 125 | + self.completed = completed |
| 126 | + self.details = details |
| 127 | + |
| 128 | + |
| 129 | +class EvaluatorData(BaseModel): |
| 130 | + """Represents the result of a conversion. |
| 131 | +
|
| 132 | + :param query: A list of messages representing the system message, chat history, and user query. |
| 133 | + :type query: List[Message] |
| 134 | + :param response: A list of messages representing the assistant's response, including tool calls and results. |
| 135 | + :type response: List[Message] |
| 136 | + :param tool_definitions: A list of tool definitions used in the agent. |
| 137 | + :type tool_definitions: List[ToolDefinition] |
| 138 | + """ |
| 139 | + |
| 140 | + query: List[Message] |
| 141 | + response: List[Message] |
| 142 | + tool_definitions: List[ToolDefinition] |
| 143 | + |
| 144 | + def to_json(self): |
| 145 | + """Converts the result to a JSON string. |
| 146 | +
|
| 147 | + :return: The JSON representation of the result. |
| 148 | + :rtype: str |
| 149 | + """ |
| 150 | + return self.model_dump_json(exclude={}, exclude_none=True) |
| 151 | + |
| 152 | + |
| 153 | +def break_tool_call_into_messages(tool_call: ToolCall, run_id: str) -> List[Message]: |
| 154 | + """ |
| 155 | + Breaks a tool call into a list of messages, including the tool call and its result. |
| 156 | +
|
| 157 | + :param tool_call: The tool call to be broken into messages. |
| 158 | + :type tool_call: ToolCall |
| 159 | + :param run_id: The ID of the run associated with the messages. |
| 160 | + :type run_id: str |
| 161 | + :return: A list of messages representing the tool call and its result. |
| 162 | + :rtype: List[Message] |
| 163 | + """ |
| 164 | + # We will use this as our accumulator. |
| 165 | + messages: List[Message] = [] |
| 166 | + |
| 167 | + # As of March 17th, 2025, we only support custom functions due to built-in code interpreters and bing grounding |
| 168 | + # tooling not reporting their function calls in the same way. Code interpreters don't include the tool call at |
| 169 | + # all in most of the cases, and bing would only show the API URL, without arguments or results. |
| 170 | + # Bing grounding would have "bing_grounding" in details with "requesturl" that will just be the API path with query. |
| 171 | + # TODO: Work with AI Services to add converter support for BingGrounding and CodeInterpreter. |
| 172 | + if not hasattr(tool_call.details, _FUNCTION): |
| 173 | + return messages |
| 174 | + |
| 175 | + # This is the internals of the content object that will be included with the tool call. |
| 176 | + tool_call_id = tool_call.details.id |
| 177 | + content_tool_call = { |
| 178 | + "type": _TOOL_CALL, |
| 179 | + _TOOL_CALL: { |
| 180 | + "id": tool_call_id, |
| 181 | + "type": _FUNCTION, |
| 182 | + _FUNCTION: { |
| 183 | + "name": tool_call.details.function.name, |
| 184 | + "arguments": safe_loads(tool_call.details.function.arguments), |
| 185 | + }, |
| 186 | + }, |
| 187 | + } |
| 188 | + |
| 189 | + # We format it into an assistant message, where the content is a singleton list of the content object. |
| 190 | + # It should be a tool message, since this is the call, but the given schema treats this message as |
| 191 | + # assistant's action of calling the tool. |
| 192 | + messages.append(AssistantMessage(run_id=run_id, content=[to_dict(content_tool_call)], createdAt=tool_call.created)) |
| 193 | + |
| 194 | + # Now, onto the tool result, which only includes the result of the function call. |
| 195 | + content_tool_call_result = {"type": _TOOL_RESULT, _TOOL_RESULT: safe_loads(tool_call.details.function.output)} |
| 196 | + |
| 197 | + # Since this is a tool's action of returning, we put it as a tool message. |
| 198 | + messages.append( |
| 199 | + ToolMessage( |
| 200 | + run_id=run_id, |
| 201 | + tool_call_id=tool_call_id, |
| 202 | + content=[to_dict(content_tool_call_result)], |
| 203 | + createdAt=tool_call.completed, |
| 204 | + ) |
| 205 | + ) |
| 206 | + return messages |
| 207 | + |
| 208 | + |
| 209 | +def to_dict(obj) -> dict: |
| 210 | + """ |
| 211 | + Converts an object to a dictionary. |
| 212 | +
|
| 213 | + :param obj: The object to be converted. |
| 214 | + :type obj: Any |
| 215 | + :return: The dictionary representation of the object. |
| 216 | + :rtype: dict |
| 217 | + """ |
| 218 | + return json.loads(json.dumps(obj)) |
| 219 | + |
| 220 | + |
| 221 | +def safe_loads(data: str) -> Union[dict, str]: |
| 222 | + """ |
| 223 | + Safely loads a JSON string into a Python dictionary or returns the original string if loading fails. |
| 224 | + :param data: The JSON string to be loaded. |
| 225 | + :type data: str |
| 226 | + :return: The loaded dictionary or the original string. |
| 227 | + :rtype: Union[dict, str] |
| 228 | + """ |
| 229 | + try: |
| 230 | + return json.loads(data) |
| 231 | + except json.JSONDecodeError: |
| 232 | + return data |
| 233 | + |
| 234 | + |
| 235 | +def convert_message(msg: dict) -> Message: |
| 236 | + """ |
| 237 | + Converts a dictionary to the appropriate Message subclass. |
| 238 | +
|
| 239 | + :param msg: The message dictionary. |
| 240 | + :type msg: dict |
| 241 | + :return: The Message object. |
| 242 | + :rtype: Message |
| 243 | + """ |
| 244 | + role = msg["role"] |
| 245 | + if role == "system": |
| 246 | + return SystemMessage(content=str(msg["content"])) |
| 247 | + elif role == "user": |
| 248 | + return UserMessage(content=msg["content"], createdAt=msg["createdAt"]) |
| 249 | + elif role == "assistant": |
| 250 | + return AssistantMessage(run_id=str(msg["run_id"]), content=msg["content"], createdAt=msg["createdAt"]) |
| 251 | + elif role == "tool": |
| 252 | + return ToolMessage( |
| 253 | + run_id=str(msg["run_id"]), |
| 254 | + tool_call_id=str(msg["tool_call_id"]), |
| 255 | + content=msg["content"], |
| 256 | + createdAt=msg["createdAt"], |
| 257 | + ) |
| 258 | + else: |
| 259 | + raise ValueError(f"Unknown role: {role}") |
0 commit comments