mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-06 13:22:12 +00:00
Suppress non-actionable HuggingFace FutureWarning shown on app start
This commit is contained in:
@@ -3,8 +3,12 @@ import os
|
|||||||
import signal
|
import signal
|
||||||
import sys
|
import sys
|
||||||
import logging
|
import logging
|
||||||
|
import warnings
|
||||||
from platform import system
|
from platform import system
|
||||||
|
|
||||||
|
# Ignore non-actionable warnings
|
||||||
|
warnings.filterwarnings("ignore", message=r'snapshot_download.py has been made private', category=FutureWarning)
|
||||||
|
|
||||||
# External Packages
|
# External Packages
|
||||||
import uvicorn
|
import uvicorn
|
||||||
from fastapi import FastAPI
|
from fastapi import FastAPI
|
||||||
|
|||||||
Reference in New Issue
Block a user