NeuralNotwork commited on
Commit
6012bff
·
verified ·
1 Parent(s): efc18e8

Delete tools/my_function.py

Browse files
Files changed (1) hide show
  1. tools/my_function.py +0 -14
tools/my_function.py DELETED
@@ -1,14 +0,0 @@
1
- """Template for custom function or Pydantic model."""
2
-
3
- from pydantic import BaseModel
4
- from pydantic import Field
5
-
6
-
7
- def my_function(arg1: str, arg2: int) -> int:
8
- """My function. Docstrings and arguments are useful for function calls.
9
-
10
- Args:
11
- arg1: The first argument.
12
- arg2: The second argument.
13
- """
14
- return arg1 + arg2