🔀 refactor(endpoints.py): fix import statement for CustomComponent

The import statement for CustomComponent has been updated to reflect the correct module path. This ensures that the correct CustomComponent class is imported and used in the code.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-06 23:52:59 -03:00
commit bed962e513

View file

@ -7,7 +7,7 @@ from langflow.utils.logger import logger
from fastapi import APIRouter, Depends, HTTPException, UploadFile
from langflow.interface.tools.custom import CustomComponent
from langflow.interface.custom.custom import CustomComponent
from langflow.api.v1.schemas import (
ProcessResponse,