Spaces:
Runtime error
Runtime error
File size: 249 Bytes
2eafbc4 |
1 2 3 4 5 6 7 8 9 10 |
from typing import Any, Dict
from pydantic import BaseModel, Field
class WorkflowInferenceResponse(BaseModel):
outputs: Dict[str, Any] = Field(
description="Dictionary with keys defined in workflow output and serialised values"
)
|