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

Function get_model_schema

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

Source from the content-addressed store, hash-verified

75
76
77async def get_model_schema(data: Dict):
78 async with aiohttp.ClientSession() as session:
79 request_url = f"{Config.BASE_URL}/model_schemas/get"
80 response = await session.get(request_url, params=data)
81 return ResponseWrapper(response.status, await response.json())
82
83
84async def model_property_schemas():

Callers 1

test_get_model_schemaMethod · 0.50

Calls 3

ResponseWrapperClass · 0.90
getMethod · 0.45
jsonMethod · 0.45

Tested by 1

test_get_model_schemaMethod · 0.40