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

Function list_model_schemas

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

Source from the content-addressed store, hash-verified

68
69
70async def list_model_schemas():
71 async with aiohttp.ClientSession() as session:
72 request_url = f"{Config.BASE_URL}/model_schemas"
73 response = await session.get(request_url)
74 return ResponseWrapper(response.status, await response.json())
75
76
77async def get_model_schema(data: Dict):

Callers 2

test_get_model_schemaMethod · 0.50

Calls 3

ResponseWrapperClass · 0.90
getMethod · 0.45
jsonMethod · 0.45

Tested by 2

test_get_model_schemaMethod · 0.40