+
+ {toolkit_name} is an{" "}
+
+ API wrapper
+ {" "}
+ toolkit: each tool mirrors one HTTP endpoint and offers LLMs a way to
+ interact with the low-level API.
+
+
+ Differently from{" "}
+
+ LLM-native tools
+
+ , API wrapper tools are heavily influenced by the original API design,
+ which is not usually optimized for LLM usage. For this reason, we
+ recommend thoroughly evaluating the toolkit with your Agents or chatbots
+ before using it in production.{" "}
+ Read more about LLM-native
+ vs API wrapper tools.
+
+
+ );
+};
+
+export default ApiWrapperInfo;
diff --git a/src/components/custom/Toolkits/toolkits-config.ts b/src/components/custom/Toolkits/toolkits-config.ts
index 9512814e..8ad551d8 100644
--- a/src/components/custom/Toolkits/toolkits-config.ts
+++ b/src/components/custom/Toolkits/toolkits-config.ts
@@ -47,6 +47,14 @@ const availableTools: Tool[] = [
category: "social",
type: "arcade",
},
+ {
+ name: "Slack API Wrapper",
+ image: "slack.png",
+ summary: "Enable LLMs to interact with the low-level Slack API",
+ link: "/toolkits/social-communication/slack_api",
+ category: "social",
+ type: "arcade",
+ },
{
name: "X",
image: "twitter.png",