Spaces:
No application file
No application file
File size: 526 Bytes
153d007 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"""Template for custom function or Pydantic model."""
from pydantic import BaseModel
from pydantic import Field
class MyModel(BaseModel):
"""My model."""
attr1: str = Field(..., description="The first attribute.")
attr2: int = Field(..., description="The second attribute.")
def my_function(arg1: str, arg2: int) -> int:
"""My function. Docstrings and arguments are useful for function calls.
Args:
arg1: The first argument.
arg2: The second argument.
"""
return arg1 + arg2
|