/
M1nX
/
SE_FastAPI_Example
Обзор
Документация
Войти
/
M1nX
/
SE_FastAPI_Example
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
feature/fastapi-refactor
deps.py
12 строк
301 B
Evgeniy Rudenko
refactor: routes and deps
02 май 2026, 23:08
02 май 2026, 23:08
c27079f
Код
Авторство
О чём код?
from functools import lru_cache from transformers import pipeline from config import settings @lru_cache(maxsize=1) def get_classifier(): if settings.sentiment_model: return pipeline(settings.sentiment_task, model=settings.sentiment_model) return pipeline(settings.sentiment_task)