models.py 236 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
8
9
10
from apps.web.models.models import Models, ModelModel, ModelForm, ModelResponse


def get_model_id_from_custom_model_id(id: str):
    model = Models.get_model_by_id(id)

    if model:
        return model.id
    else:
        return id