Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Скоро — поддержка вебхуков для событий завершения генерации в разработке
GET /api/v2/generate/{id}
import requests, time def ждать_результат(gen_id, api_key): headers = {"Authorization": f"Bearer {api_key}"} while True: r = requests.get( f"https://elumenta.ru/api/v2/generate/{gen_id}", headers=headers ).json() if r["status"] in ("completed", "failed"): return r time.sleep(5)