()
| 82 | |
| 83 | |
| 84 | async def model_property_schemas(): |
| 85 | async with aiohttp.ClientSession() as session: |
| 86 | request_url = f"{Config.BASE_URL}/model_property_schemas/text_embedding" |
| 87 | response = await session.get(request_url) |
| 88 | return ResponseWrapper(response.status, await response.json()) |
| 89 | |
| 90 | |
| 91 | async def get_resources(url): |