df6c67d
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" )