-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathrouter_llm.py
270 lines (217 loc) · 8.27 KB
/
router_llm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
from typing import Callable, List, Literal, Optional, TYPE_CHECKING
from pydantic import BaseModel
from mcp_agent.agents.agent import Agent
from mcp_agent.workflows.llm.augmented_llm import AugmentedLLM
from mcp_agent.workflows.router.router_base import ResultT, Router, RouterResult
from mcp_agent.logging.logger import get_logger
if TYPE_CHECKING:
from mcp_agent.context import Context
logger = get_logger(__name__)
DEFAULT_ROUTING_INSTRUCTION = """
You are a highly accurate request router that directs incoming requests to the most appropriate category.
A category is a specialized destination, such as a Function, an MCP Server (a collection of tools/functions), or an Agent (a collection of servers).
Below are the available routing categories, each with their capabilities and descriptions:
{context}
Your task is to analyze the following request and determine the most appropriate categories from the options above. Consider:
- The specific capabilities and tools each destination offers
- How well the request matches the category's description
- Whether the request might benefit from multiple categories (up to {top_k})
Request: {request}
Respond in JSON format:
{{
"categories": [
{{
"category": <category name>,
"confidence": <high, medium or low>,
"reasoning": <brief explanation>
}}
]
}}
Only include categories that are truly relevant. You may return fewer than {top_k} if appropriate.
If none of the categories are relevant, return an empty list.
"""
class LLMRouterResult(RouterResult[ResultT]):
"""A class that represents the result of an LLMRouter.route request"""
confidence: Literal["high", "medium", "low"]
"""The confidence level of the routing decision."""
reasoning: str | None = None
"""
A brief explanation of the routing decision.
This is optional and may only be provided if the router is an LLM
"""
class StructuredResponseCategory(BaseModel):
"""A class that represents a single category returned by an LLM router"""
category: str
"""The name of the category (i.e. MCP server, Agent or function) to route the input to."""
confidence: Literal["high", "medium", "low"]
"""The confidence level of the routing decision."""
reasoning: str | None = None
"""A brief explanation of the routing decision."""
class StructuredResponse(BaseModel):
"""A class that represents the structured response of an LLM router"""
categories: List[StructuredResponseCategory]
"""A list of categories to route the input to."""
class LLMRouter(Router):
"""
A router that uses an LLM to route an input to a specific category.
"""
def __init__(
self,
llm: AugmentedLLM,
server_names: List[str] | None = None,
agents: List[Agent] | None = None,
functions: List[Callable] | None = None,
routing_instruction: str | None = None,
context: Optional["Context"] = None,
**kwargs,
):
super().__init__(
server_names=server_names,
agents=agents,
functions=functions,
routing_instruction=routing_instruction,
context=context,
**kwargs,
)
self.llm = llm
@classmethod
async def create(
cls,
llm: AugmentedLLM,
server_names: List[str] | None = None,
agents: List[Agent] | None = None,
functions: List[Callable] | None = None,
routing_instruction: str | None = None,
context: Optional["Context"] = None,
) -> "LLMRouter":
"""
Factory method to create and initialize a router.
Use this instead of constructor since we need async initialization.
"""
instance = cls(
llm=llm,
server_names=server_names,
agents=agents,
functions=functions,
routing_instruction=routing_instruction,
context=context,
)
await instance.initialize()
return instance
async def route(
self, request: str, top_k: int = 1
) -> List[LLMRouterResult[str | Agent | Callable]]:
if not self.initialized:
await self.initialize()
return await self._route_with_llm(request, top_k)
async def route_to_server(
self, request: str, top_k: int = 1
) -> List[LLMRouterResult[str]]:
if not self.initialized:
await self.initialize()
return await self._route_with_llm(
request,
top_k,
include_servers=True,
include_agents=False,
include_functions=False,
)
async def route_to_agent(
self, request: str, top_k: int = 1
) -> List[LLMRouterResult[Agent]]:
if not self.initialized:
await self.initialize()
return await self._route_with_llm(
request,
top_k,
include_servers=False,
include_agents=True,
include_functions=False,
)
async def route_to_function(
self, request: str, top_k: int = 1
) -> List[LLMRouterResult[Callable]]:
if not self.initialized:
await self.initialize()
return await self._route_with_llm(
request,
top_k,
include_servers=False,
include_agents=False,
include_functions=True,
)
async def _route_with_llm(
self,
request: str,
top_k: int = 1,
include_servers: bool = True,
include_agents: bool = True,
include_functions: bool = True,
) -> List[LLMRouterResult]:
if not self.initialized:
await self.initialize()
routing_instruction = self.routing_instruction or DEFAULT_ROUTING_INSTRUCTION
# Generate the categories context
context = self._generate_context(
include_servers=include_servers,
include_agents=include_agents,
include_functions=include_functions,
)
# logger.debug(
# f"Requesting routing from LLM, \nrequest: {request} \ntop_k: {top_k} \nrouting_instruction: {routing_instruction} \ncontext={context}",
# data={"progress_action": "Routing", "agent_name": "LLM Router"},
# )
# Format the prompt with all the necessary information
prompt = routing_instruction.format(
context=context, request=request, top_k=top_k
)
# Get routes from LLM
response = await self.llm.generate_structured(
message=prompt,
response_model=StructuredResponse,
)
# logger.debug(
# "Routing Response received",
# data={"progress_action": "Finished", "agent_name": "LLM Router"},
# )
# Construct the result
if not response or not response.categories:
return []
result: List[LLMRouterResult] = []
for r in response.categories:
router_category = self.categories.get(r.category)
if not router_category:
# Skip invalid categories
# TODO: saqadri - log or raise an error
continue
result.append(
LLMRouterResult(
result=router_category.category,
confidence=r.confidence,
reasoning=r.reasoning,
)
)
return result[:top_k]
def _generate_context(
self,
include_servers: bool = True,
include_agents: bool = True,
include_functions: bool = True,
) -> str:
"""Generate a formatted context list of categories."""
context_list = []
idx = 1
# Format all categories
if include_servers:
for category in self.server_categories.values():
context_list.append(self.format_category(category, idx))
idx += 1
if include_agents:
for category in self.agent_categories.values():
context_list.append(self.format_category(category, idx))
idx += 1
if include_functions:
for category in self.function_categories.values():
context_list.append(self.format_category(category, idx))
idx += 1
return "\n\n".join(context_list)