fast-agent-mcp 0.2.53__py3-none-any.whl → 0.2.54__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fast-agent-mcp might be problematic. Click here for more details.
- {fast_agent_mcp-0.2.53.dist-info → fast_agent_mcp-0.2.54.dist-info}/METADATA +1 -1
- {fast_agent_mcp-0.2.53.dist-info → fast_agent_mcp-0.2.54.dist-info}/RECORD +6 -6
- mcp_agent/llm/providers/augmented_llm_openai.py +4 -4
- {fast_agent_mcp-0.2.53.dist-info → fast_agent_mcp-0.2.54.dist-info}/WHEEL +0 -0
- {fast_agent_mcp-0.2.53.dist-info → fast_agent_mcp-0.2.54.dist-info}/entry_points.txt +0 -0
- {fast_agent_mcp-0.2.53.dist-info → fast_agent_mcp-0.2.54.dist-info}/licenses/LICENSE +0 -0
|
@@ -86,7 +86,7 @@ mcp_agent/llm/providers/augmented_llm_generic.py,sha256=5Uq8ZBhcFuQTt7koP_5ykolR
|
|
|
86
86
|
mcp_agent/llm/providers/augmented_llm_google_native.py,sha256=c6zczfs-Iw70j3OYELHJ4S7CRwAddkeXinex_yLMhmU,22194
|
|
87
87
|
mcp_agent/llm/providers/augmented_llm_google_oai.py,sha256=g_g46h-YuxqbRZiO_dVo5zO2OkX1yx7nb6xDaQbOvWs,1137
|
|
88
88
|
mcp_agent/llm/providers/augmented_llm_groq.py,sha256=5pqWgOoEJpvL230rJekBNlmBzUegbgwYitArlXgAmY0,4424
|
|
89
|
-
mcp_agent/llm/providers/augmented_llm_openai.py,sha256=
|
|
89
|
+
mcp_agent/llm/providers/augmented_llm_openai.py,sha256=V8w-BIBG-z5gkEJkNpJPx8UMDTOajQhxi1neYXn_NgU,25375
|
|
90
90
|
mcp_agent/llm/providers/augmented_llm_openrouter.py,sha256=m3wS83fabBOmaZJH9gQ9sFw_2TB4xTb44WCOPB-2NJ4,2001
|
|
91
91
|
mcp_agent/llm/providers/augmented_llm_tensorzero_openai.py,sha256=D53Fry2AfBLOB5z9hM19U6_HMJeVNTpiBCAJb11ulNg,5503
|
|
92
92
|
mcp_agent/llm/providers/augmented_llm_xai.py,sha256=MhlX91IUNynQ_NDknx4EQJLwg-NbR8lcHS1P4JuLOnA,1433
|
|
@@ -185,8 +185,8 @@ mcp_agent/resources/examples/workflows/short_story.txt,sha256=X3y_1AyhLFN2AKzCKv
|
|
|
185
185
|
mcp_agent/tools/tool_definition.py,sha256=L3Pxl-uLEXqlVoo-bYuFTFALeI-2pIU44YgFhsTKEtM,398
|
|
186
186
|
mcp_agent/ui/console_display.py,sha256=XXrHr950wSBSedEKUaaGkXjOzuFpQYzUKKiyaZ58Mps,28280
|
|
187
187
|
mcp_agent/ui/console_display_legacy.py,sha256=sm2v61-IPVafbF7uUaOyhO2tW_zgFWOjNS83IEWqGgI,14931
|
|
188
|
-
fast_agent_mcp-0.2.
|
|
189
|
-
fast_agent_mcp-0.2.
|
|
190
|
-
fast_agent_mcp-0.2.
|
|
191
|
-
fast_agent_mcp-0.2.
|
|
192
|
-
fast_agent_mcp-0.2.
|
|
188
|
+
fast_agent_mcp-0.2.54.dist-info/METADATA,sha256=A4iN6lYeVCza4RiAYxB02lImbHcOa8P1KZMcWKUkzZk,31048
|
|
189
|
+
fast_agent_mcp-0.2.54.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
190
|
+
fast_agent_mcp-0.2.54.dist-info/entry_points.txt,sha256=QaX5kLdI0VdMPRdPUF1nkG_WdLUTNjp_icW6e3EhNYU,232
|
|
191
|
+
fast_agent_mcp-0.2.54.dist-info/licenses/LICENSE,sha256=Gx1L3axA4PnuK4FxsbX87jQ1opoOkSFfHHSytW6wLUU,10935
|
|
192
|
+
fast_agent_mcp-0.2.54.dist-info/RECORD,,
|
|
@@ -321,14 +321,14 @@ class OpenAIAugmentedLLM(AugmentedLLM[ChatCompletionMessageParam, ChatCompletion
|
|
|
321
321
|
|
|
322
322
|
response = await self.aggregator.list_tools()
|
|
323
323
|
available_tools: List[ChatCompletionToolParam] | None = [
|
|
324
|
-
|
|
325
|
-
type
|
|
326
|
-
function
|
|
324
|
+
{
|
|
325
|
+
"type": "function",
|
|
326
|
+
"function": {
|
|
327
327
|
"name": tool.name,
|
|
328
328
|
"description": tool.description if tool.description else "",
|
|
329
329
|
"parameters": self.adjust_schema(tool.inputSchema),
|
|
330
330
|
},
|
|
331
|
-
|
|
331
|
+
}
|
|
332
332
|
for tool in response.tools
|
|
333
333
|
]
|
|
334
334
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|