Add run_id to VerticesOrderResponse
This commit is contained in:
parent
3a3ffba6bd
commit
99803c53f7
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import time
|
||||
from typing import Optional
|
||||
import uuid
|
||||
|
||||
from fastapi import (
|
||||
APIRouter,
|
||||
|
|
@ -120,7 +121,8 @@ async def get_vertices(
|
|||
# Now vertices is a list of lists
|
||||
# We need to get the id of each vertex
|
||||
# and return the same structure but only with the ids
|
||||
return VerticesOrderResponse(ids=vertices)
|
||||
run_id = uuid.uuid4()
|
||||
return VerticesOrderResponse(ids=vertices, run_id=run_id)
|
||||
|
||||
except Exception as exc:
|
||||
logger.error(f"Error checking build status: {exc}")
|
||||
|
|
|
|||
|
|
@ -225,6 +225,7 @@ class ApiKeyCreateRequest(BaseModel):
|
|||
|
||||
class VerticesOrderResponse(BaseModel):
|
||||
ids: List[List[str]]
|
||||
run_id: UUID
|
||||
|
||||
|
||||
class ResultDataResponse(BaseModel):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue