(*args, **kwargs)
| 17 | except ImportError: |
| 18 | _PYDANTIC_AVAILABLE = False |
| 19 | def encode_pydantic(*args, **kwargs): |
| 20 | raise ImportError("encode_pydantic requires pydantic to be installed. Please install pydantic to use this feature.") |
| 21 | def decode_to_pydantic(*args, **kwargs): |
| 22 | raise ImportError("decode_to_pydantic requires pydantic to be installed. Please install pydantic to use this feature.") |
| 23 | def generate_structure_from_pydantic(*args, **kwargs): |
no outgoing calls
searching dependent graphs…