(assistant_id: str)
| 61 | |
| 62 | |
| 63 | async def delete_assistant(assistant_id: str): |
| 64 | headers = get_headers(CONFIG.Authentication) |
| 65 | async with aiohttp.ClientSession(headers=headers) as session: |
| 66 | request_url = f"{ASSISTANT_BASE_URL}/{assistant_id}" |
| 67 | response = await session.delete(request_url) |
| 68 | return ResponseWrapper(response.status, await response.json()) |