Menu

Post image 1
Post image 2
1 / 2
0

x711 + CrewAI: give your crew real-time tools without managing API keys

DEV Community·x711io·20 days ago
#ah0qq958
#ai#crewai#python#agents#fullscreen#x711
Reading 0:00
15s threshold

x711 + CrewAI: give your crew real-time tools without managing API keys CrewAI agents need tools. The standard answer is to wire up 5 different API keys for search, prices, data, and execution. x711 replaces all of them with one endpoint and one key. Get your key curl -X POST https://x711.io/api/onboard \ -d '{"name":"my-crewai-fleet"}' # → {"api_key":"x711_..."} Enter fullscreen mode Exit fullscreen mode Define the tools import requests from crewai.tools import BaseTool X711_KEY = " x711_your_key_here " class X711Tool ( BaseTool ): tool_name : str name : str description : str def _run ( self , ** kwargs ) -> str : r = requests . post ( " https://x711.io/api/refuel " , headers = { " X-API-Key " : X711_KEY }, json = { " tool " : self . tool_name , ** kwargs }, timeout = 15 , ) return str ( r . json ()) web_search = X711Tool ( tool_name = " web_search " , name = " WebSearch " , description = " Search the live web.…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More