@@ -46,9 +46,9 @@ Managing such agents typically requires advanced coding and deep knowledge of ag
46
46
47
47
LLM Agentic Tool Mesh provides all the necessary tools to build a powerful agentic system by handling:
48
48
49
- 1 . Tool repository
50
- 2 . Reasoning engine
51
- 3 . Multi-agent task force
49
+ 1 . ** Tool repository**
50
+ 2 . ** Reasoning engine**
51
+ 3 . ** Multi-agent task force**
52
52
53
53
### Tool repository
54
54
@@ -93,7 +93,7 @@ if add_result.status == "success":
93
93
print (" Tool added successfully." )
94
94
else :
95
95
print (f " ERROR: \n { add_result.error_message} " )
96
- Retrieving tools based on metadata:
96
+
97
97
# Retrieve tools with a metadata filter
98
98
metadata_filter = {' category' : ' NLP' }
99
99
get_result = tool_repository.get_tools(metadata_filter)
@@ -228,14 +228,14 @@ The OpenAPI Manager is a multi-agent tool that reads OpenAPI documentation and p
228
228
229
229
Capabilities:
230
230
231
- * ListOpenApis: Lists all OpenAPI specifications present in the system.
232
- * SelectOpenApi: Selects a specific OpenAPI specification.
233
- * GetOpenApiVersion: Returns the OpenAPI version of the selected specification.
234
- * GetInfo: Returns the information dictionary of the selected specification.
235
- * GetMethodsByTag: Lists all methods of the selected specification for a specific tag.
236
- * GetMethodById: Returns detailed information about a method selected by ID.
237
- * GetRequestBody: Returns the request body schema of the selected specification.
238
- * GetResponse: Returns the response schema of the selected specification.
231
+ * ** ListOpenApis** : Lists all OpenAPI specifications present in the system.
232
+ * ** SelectOpenApi** : Selects a specific OpenAPI specification.
233
+ * ** GetOpenApiVersion** : Returns the OpenAPI version of the selected specification.
234
+ * ** GetInfo** : Returns the information dictionary of the selected specification.
235
+ * ** GetMethodsByTag** : Lists all methods of the selected specification for a specific tag.
236
+ * ** GetMethodById** : Returns detailed information about a method selected by ID.
237
+ * ** GetRequestBody** : Returns the request body schema of the selected specification.
238
+ * ** GetResponse** : Returns the response schema of the selected specification.
239
239
240
240

241
241
0 commit comments