(data: Dict)
| 75 | |
| 76 | |
| 77 | async 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 | |
| 84 | async def model_property_schemas(): |