function call中,参数支持的数据类型 包括整数、字符串、小数、布尔值、列表、字典
| 23 | |
| 24 | |
| 25 | class DataType(Enum): |
| 26 | """function call中,参数支持的数据类型 |
| 27 | 包括整数、字符串、小数、布尔值、列表、字典 |
| 28 | """ |
| 29 | |
| 30 | INTEGER: str = "integer" |
| 31 | STRING: str = "string" |
| 32 | NUMBER: str = "number" |
| 33 | BOOLEAN: str = "boolean" |
| 34 | ARRAY: str = "array" |
| 35 | OBJECT: str = "object" |
| 36 | |
| 37 | |
| 38 | class ToolProperty(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected