10 lines
234 B
Python
10 lines
234 B
Python
from typing import List
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class FunctionMetadata(BaseModel):
|
|
is_asynchronous: bool
|
|
input_parameter_names: List[str] = []
|
|
model_parameter_names: List[str] = []
|
|
is_finalised: bool = False
|