MCPcopy Create free account
hub / github.com/TaskingAI/TaskingAI / verify_credentials

Function verify_credentials

inference/test/inference_service/inference.py:28–32  ·  view source on GitHub ↗
(data: Dict)

Source from the content-addressed store, hash-verified

26
27
28async def verify_credentials(data: Dict):
29 async with aiohttp.ClientSession() as session:
30 request_url = f"{Config.BASE_URL}/verify_credentials"
31 response = await session.post(request_url, json=data)
32 return ResponseWrapper(response.status, await response.json())
33
34
35async def caches():

Calls 2

ResponseWrapperClass · 0.90
jsonMethod · 0.45