Chage torch import to conditional import

This commit is contained in:
Marko Henning 2025-08-21 13:19:24 +02:00
parent 6663fc3a6c
commit b3de3295d6

View file

@ -4,7 +4,6 @@ import mimetypes
import os
import shutil
import asyncio
import torch
import uuid
from datetime import datetime
@ -287,6 +286,8 @@ async def update_embedding_config(
request.app.state.EMBEDDING_FUNCTION = None
import gc
gc.collect()
if DEVICE_TYPE == 'cuda':
import torch
if torch.cuda.is_available():
torch.cuda.empty_cache()
try:
@ -820,6 +821,8 @@ async def update_rag_config(
request.app.state.RERANKING_FUNCTION = None
import gc
gc.collect()
if DEVICE_TYPE == 'cuda':
import torch
if torch.cuda.is_available():
torch.cuda.empty_cache()
request.app.state.config.RAG_RERANKING_ENGINE = (