2021-07-21 00:54:27 -04:00

10 lines
168 B
Python

from typing import Any, Dict
from pydantic import BaseModel
class CallData(BaseModel):
function_name: str
function_signature: str
inputs: Dict[str, Any]