| # ui/__init__.py | |
| import warnings | |
| warnings.filterwarnings( | |
| "ignore", | |
| message='Field name "json"', | |
| category=UserWarning, | |
| module=r"firecrawl\.v2\.types", | |
| ) | |
| warnings.filterwarnings( | |
| "ignore", | |
| message="PyTorch was not found", | |
| category=UserWarning, | |
| module=r"transformers", | |
| ) | |