MCPcopy Index your code
hub / github.com/TaskingAI/TaskingAI / caches

Function caches

inference/test/inference_service/inference.py:35–39  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33
34
35async def caches():
36 async with aiohttp.ClientSession() as session:
37 request_url = f"{Config.BASE_URL}/caches"
38 response = await session.get(request_url)
39 return ResponseWrapper(response.status, await response.json())
40
41
42async def cache_checksums():

Callers 1

test_cacheMethod · 0.85

Calls 3

ResponseWrapperClass · 0.90
getMethod · 0.45
jsonMethod · 0.45

Tested by 1

test_cacheMethod · 0.68